이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std ;
#define int long long
#define endl '\n'
#define all(a) a.begin() , a.end()
#define alr(a) a.rbegin() , a.rend()
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
int q;
cin >> q;
int ans1 = 0, ans2 = 0;
map < int , int > last;
for(int i = 1 ; i <= 8 ; i++) last[i] = -10;
while(q--) {
int t, x, y;
cin >> t >> x >> y;
if(x < y) {
int before = last[x];
if(t - before <= 10) {
ans1 += 150;
} else {
ans1 += 100;
}
last[x] = t;
} else {
int before = last[x];
if(t - before <= 10) {
ans2 += 150;
} else {
ans2 += 100;
}
last[x] = t;
}
}
cout << ans1 << " " << ans2 << endl;
return 0 ;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |