Advertisement
LEGEND2004

KLMNO

Aug 1st, 2024
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.49 KB | None | 0 0
  1. #pragma GCC optimize("O3")
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4.  
  5. #define int long long
  6. #define double long double
  7. #define _FastIO ios_base::sync_with_stdio(0); cin.tie(0)
  8. #define F first
  9. #define S second
  10.  
  11. signed main()
  12. {
  13.     _FastIO;
  14.  
  15.     // K
  16.     /*
  17.     string s;
  18.     cin >> s;
  19.     int n = s.size();
  20.  
  21.     string ans = "Yes";
  22.     for(int i = 0; i < n; i += 2){
  23.         if(isupper(s[i]))
  24.             ans = "No";
  25.     }
  26.  
  27.     for(int i = 1; i < n; i += 2){
  28.         if(islower(s[i]))
  29.             ans = "No";
  30.     }
  31.  
  32.     cout << ans << '\n';
  33.     */
  34.     /*
  35.     // M
  36.     int n , m , x;
  37.     cin >> n >> m;
  38.     for(int i = 0; i < n; i++){
  39.         for(int j = 0; j < m; j++){
  40.             cin >> x;
  41.             if(!x) // x == 0
  42.                 cout << '.';
  43.             else
  44.                 cout << char('A' + x - 1);
  45.         }
  46.         cout << '\n';
  47.     }*/
  48.     /*
  49.     // N
  50.     int a , b;
  51.     cin >> a >> b;
  52.     if(a > b)
  53.         swap(a , b);
  54.  
  55.     // a <= b
  56.     for(int i = 0; i < b; i++)
  57.         cout << a;
  58.     */
  59.     /*
  60.     // O
  61.     int n;
  62.     cin >> n;
  63.     int a[n + 5] , b[n + 5];
  64.     map<int , int> cnt;
  65.     for(int i = 0; i < n; i++){
  66.         cin >> a[i];
  67.         cnt[a[i]]++;
  68.     }
  69.     int x = 0 , total = 0;
  70.     for(int i = 0; i < n; i++){
  71.         cin >> b[i];
  72.         cnt[b[i]]++;
  73.         if(cnt[b[i]] == 2)
  74.             total++;
  75.         if(a[i] == b[i])
  76.             x++;
  77.     }
  78.     cout << x << '\n';
  79.     cout << total - x << '\n';
  80.     */
  81.  
  82. }
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement