Advertisement
LEGEND2004

Sol

Feb 18th, 2024
1,004
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.28 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.     cout << min(n % k , k - n % k);
  15.     */
  16.     /*
  17.     // Junior A
  18.     int n , k;
  19.     cin >> n >> k;
  20.     int x = k / n , y = k % n;
  21.     int sum = 0;
  22.     if(x > 0){
  23.         sum += k - n;
  24.     }
  25.     if(x < n - 1){
  26.         sum += k + n;
  27.     }
  28.     if(y > 0){
  29.         sum += k - 1;
  30.     }
  31.     if(y < n - 1){
  32.         sum += k + 1;
  33.     }
  34.     cout << sum;
  35.     */
  36.     /*
  37.     // Senior A
  38.     int n , s , m , q;
  39.     cin >> n >> s;
  40.     int ans = 0;
  41.     bool ok = false;
  42.     for(int i = 0; i < n; i++){
  43.         cin >> m >> q;
  44.         if(m * 100 + q <= s * 100){
  45.             ok = true;
  46.             if(q != 0)
  47.                 ans = max(ans , 100 - q);
  48.         }
  49.     }
  50.     if(!ok){
  51.         cout << -1;
  52.         return 0;
  53.     }
  54.     cout << ans;
  55.     */
  56.     /*
  57.     // Senior B
  58.     int n , k;
  59.     cin >> n;
  60.     bool used[n + 1] = {0};
  61.     for(int i = 1; i <= n; i++){
  62.         cin >> k;
  63.         used[k] = 1;
  64.     }
  65.     for(int i = 1; i <= n; i++){
  66.         if(!used[i]){
  67.             cout << i;
  68.             return 0;
  69.         }
  70.     }
  71.     cout << -1;
  72.     */
  73. }
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement