Advertisement
LEGEND2004

Sol A,B

Feb 19th, 2024
629
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.32 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define int long long
  5. #define fastio ios_base::sync_with_stdio(0); cin.tie(0)
  6.  
  7. signed main()
  8. {
  9.     fastio;
  10.     /*
  11.     // Junior B
  12.     int n , k;
  13.     cin >> n >> k;
  14.     int x = n % k;
  15.     int y = abs(y - k);
  16.     cout << min(x , y);
  17.     */
  18.     /*
  19.     // Junior A
  20.     int n , k;
  21.     cin >> n >> k;
  22.     int x = k / n , y = k % n;
  23.     int sum = 0;
  24.     if(x > 0){
  25.         sum += k - n;
  26.     }
  27.     if(x < n - 1){
  28.         sum += k + n;
  29.     }
  30.     if(y > 0){
  31.         sum += k - 1;
  32.     }
  33.     if(y < n - 1){
  34.         sum += k + 1;
  35.     }
  36.     cout << sum;
  37.     */
  38.     /*
  39.     // Senior A
  40.     int n , s , m , q;
  41.     cin >> n >> s;
  42.     int ans = 0;
  43.     bool ok = 0;
  44.     for(int i = 0; i < n; i++){
  45.         cin >> m >> q;
  46.         if(m * 100 + q <= s * 100){
  47.             ok = 1;
  48.             if(q != 0){
  49.                  ans = max(ans , 100 - q);
  50.             }
  51.         }
  52.     }
  53.     if(ok == 0)
  54.         cout << -1;
  55.     else
  56.         cout << ans;
  57.     */
  58.     /*
  59.     // Senior B
  60.  
  61.     int n , x;
  62.     cin >> n;
  63.     bool used[n + 1] = {0};
  64.     for(int i = 0; i < n; i++){
  65.         cin >> x;
  66.         used[x] = 1;
  67.     }
  68.     for(int i = 1; i <= n; i++){
  69.         if(used[i] == 0){
  70.             cout << i;
  71.             return 0;
  72.         }
  73.     }
  74.     cout << -1;
  75.     */
  76. }
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement