Advertisement
LEGEND2004

H - I

Aug 20th, 2024
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.99 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. const int mod = 998244353; // 1e9 + 7
  11.  
  12.  
  13. bool pal(string a){
  14.     string b = a;
  15.     reverse(a.begin() , a.end());
  16.     return a == b;
  17. }
  18.  
  19. signed main()
  20. {
  21.     _FastIO;
  22.     /*
  23.     // H
  24.     int n;
  25.     cin >> n;
  26.     int a[n + 5];
  27.     int x = 0 , y = 0 , s = 0;
  28.     for(int i = 0; i < n; i++){
  29.         cin >> a[i];
  30.         s += a[i];
  31.     }
  32.     int ans = LLONG_MAX;
  33.     for(int i = 0; i + 1 < n; i++){
  34.         x += a[i];
  35.         y = s - x;
  36.         ans = min(ans , abs(x - y));
  37.     }
  38.     cout << ans << '\n';
  39.     */
  40.     /*
  41.     // I
  42.     string s;
  43.     cin >> s;
  44.     int n = s.size();
  45.     string x = s.substr(0 , n / 2);
  46.     string y = s.substr((n + 1) / 2);
  47.     if(pal(s) && pal(x) && pal(y))
  48.         cout << "Yes";
  49.     else
  50.         cout << "No";
  51.     */
  52.  
  53. }
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement