Submission #851483

#TimeUsernameProblemLanguageResultExecution timeMemory
851483AaWLjeto (COCI21_ljeto)C++14
50 / 50
1 ms600 KiB
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back #define endl '\n' #define AI(x) begin(x),end(x) #ifdef AaW #define debug(args...) LKJ("\033[1;32m[ "+string(#args)+" ]\033[0m", args) template<class I> void LKJ(I&&x){ cerr << x << '\n'; } template<class I, class...T> void LKJ(I&&x, T&&...t){ cerr << x << ", ", LKJ(t...); } template<class I> void OI(I a, I b){ while(a < b) cerr << *a << " \n"[next(a) == b], ++a; } #else #define debug(...) 0 #define OI(...) 0 #endif #define _ ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); signed main(){_ int n; cin >> n; vector <int> ls(10, -11); int sa = 0, sb = 0; for (int i = 0; i < n; ++i) { int t, a, b; cin >> t >> a >> b; if (a <= 4) { sa += 100; if (ls[a] + 10 >= t) sa += 50; ls[a] = t; } else{ sb += 100; if (ls[a] + 10 >= t) sb += 50; ls[a] = t; } } cout << sa << " " << sb <<endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...