제출 #1086472

#제출 시각아이디문제언어결과실행 시간메모리
1086472minggaInfinite Race (EGOI24_infiniterace2)C++17
0 / 100
1 ms600 KiB
#include "bits/stdc++.h" using namespace std; #define ln "\n" #define dbg(x) cout << #x << " = " << x << ln #define mp make_pair #define pb push_back #define fi first #define se second #define inf 2e18 #define fast_cin() \ ios_base::sync_with_stdio(false); \ cin.tie(NULL) #define out(file) freopen(file, "w", stdout) #define in(file) freopen(file, "r", stdin) #define all(x) (x).begin(), (x).end() #define sz(x) ((int)(x).size()) #define int long long int MOD = 1e9 + 7; const int N = 2e5 + 7; int n, q; void sub1() { int cnt = 0; int cur = 0; while(q--) { int u; cin >> u; if(u > 0) { cur = 0; } else { if(cur == 1) cnt++; cur = 1; } } cout << cnt; } signed main() { fast_cin(); cin >> n >> q; if(n == 2) sub1(); cerr << "\nTime: " << clock() * 1000 / CLOCKS_PER_SEC; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...