Advertisement
LEGEND2004

OPQ

Jul 30th, 2024
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.02 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.     // O
  16.     int n;
  17.     cin >> n;
  18.     int a[n + 5] , b[n + 5];
  19.     for(int i = 0; i < n; i++){
  20.         cin >> a[i];
  21.     }
  22.     int ans = 0;
  23.     for(int i = 0; i < n; i++){
  24.         cin >> b[i];
  25.         ans += a[i] * b[i];
  26.     }
  27.     if(!ans)    // ans == 0
  28.         cout << "Yes";
  29.     else
  30.         cout << "No";
  31.     */
  32.     /*
  33.     // P
  34.     int n;
  35.     cin >> n;
  36.     int a = n / 500;
  37.     int b = (n % 500) / 5;
  38.     cout << a * 1000 + b * 5;
  39.     */
  40.     /*
  41.     // Q
  42.     int n;
  43.     cin >> n;
  44.     int a[n + 5];
  45.     for(int i = 0; i < n; i++){
  46.         cin >> a[i];
  47.     }
  48.  
  49.     for(int i = 0 ; i < n - 1; i++){
  50.         if(a[i] >= a[i + 1]){
  51.             cout << a[i] << '\n';
  52.             return 0;
  53.         }
  54.     }
  55.     cout << a[n - 1] << '\n';
  56.     */
  57. }
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement