Advertisement
LEGEND2004

Round # sol

Jul 30th, 2024
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.94 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.     // A
  16.     int a , b;
  17.     cin >> a >> b;
  18.     cout << max({a + b , a - b , a * b}) << '\n';
  19.     */
  20.  
  21.     // B
  22.     /*
  23.     int n;
  24.     cin >> n;
  25.     if(n / 100 == n % 10)
  26.         cout << "Yes";
  27.     else
  28.         cout << "No";
  29.     */
  30.     /*
  31.     string s;
  32.     cin >> s;
  33.     int n = s.size();
  34.     /*
  35.     for(int i = 0; i + i < n; i++){
  36.         if(s[i] != s[n - i - 1]){
  37.             cout << "No;
  38.             return 0;
  39.         }
  40.     }
  41.     cout << "Yes";
  42.     */
  43.     /*
  44.     string h = s;
  45.     reverse(s.begin() , s.end());
  46.     if(h == s)
  47.         cout << "Yes";
  48.     else
  49.         cout << "No";
  50.     */
  51.  
  52.     /*
  53.     // C
  54.     int a[4];
  55.     for(int i = 0; i < 4; i++)
  56.         cin >> a[i];
  57.  
  58.     sort(a , a + 4);
  59.     if(a[0] == 1 && a[1] == 4 && a[2] == 7 && a[3] == 9)
  60.         cout << "YES";
  61.     else
  62.         cout << "NO";
  63.     */
  64.     /*
  65.     // D
  66.     string s = "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679";
  67.     int n;
  68.     cin >> n;
  69.     cout << s.substr(0 , n + 2);
  70.     */
  71.     /*
  72.     // E
  73.     string a , b , c;
  74.     cin >> a >> b >> c;
  75.     cout << a[0] << b[1] << c[2];
  76.     */
  77.     /*
  78.     // F
  79.     string s;
  80.     cin >> s;
  81.     if(s.find("AC") < s.size())
  82.         cout << "Yes";
  83.     else
  84.         cout << "No";
  85.     */
  86.     /*
  87.     // G
  88.     string s;
  89.     cin >> s;
  90.     bool ok = 0; , ans = 0;
  91.     for(char i : s){
  92.         if(i == 'C')
  93.             ok = 1;
  94.         if(i == 'F' && ok)
  95.             ans = 1;
  96.     }
  97.     cout << (ans ? "Yes" : "No");
  98.     if(ans)
  99.         cout << "Yes";
  100.     else
  101.         cout << "No";
  102.     */
  103.     /*
  104.     // H
  105.     int n , m;
  106.     cin >> n >> m;
  107.     string s;
  108.     for(int i = 1; i <= n; i++){
  109.         for(int j = 1; j <= m; j++){
  110.             cin >> s;
  111.             if(s == "snuke")
  112.                 cout << char('A' + j - 1) << i;
  113.         }
  114.     }
  115.     */
  116.  
  117.     // 1 3 5 7 9 11
  118.     // 4 12 20
  119.     // 16 20
  120.     // 36
  121.  
  122.     // 1 3 5 7 9
  123.     // 1 8 16
  124.     // 1 24
  125.  
  126.     // 2 4
  127.     // 6
  128.  
  129.     // 2 4 6
  130.     // 10 6
  131.     // 16
  132.  
  133.     /*
  134.     // I
  135.     int n , tek = 0, x;
  136.     cin >> n;
  137.     while(n--){
  138.         cin >> x;
  139.         tek += x % 2;
  140.     }
  141.     if(tek % 2)
  142.         cout << "NO";
  143.     else
  144.         cout << "YES";
  145.     */
  146.     /*
  147.     int n , x;
  148.     cin >> n;
  149.     int a[n + 5];
  150.     for(int i = 1; i <= n; i++){
  151.         cin >> x;
  152.         a[x] = i; // x ededin movqeyi
  153.     }
  154.     for(int i = 1; i <= n; i++){
  155.         cout << a[i] << " ";
  156.     }
  157.     cout << '\n';
  158.     */
  159.  
  160.  
  161.     // b * 5 * 2 = b0
  162.  
  163.     // A0B*5
  164.  
  165.     //  1 15
  166.     // 175 * 2 = 350
  167.  
  168.     // 1075 = 2150
  169.     /*
  170.     // K
  171.     int a , b;
  172.     cin >> a >> b;
  173.     cout << a << "0" << b * 5;
  174.     */
  175.  
  176.  
  177. }
  178.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement