#include <bits/stdc++.h>
#define int int64_t
#define ll int128_t
using namespace std;
int32_t main()
{
int T,sayp=0,sayg=0;
cin>>T;
int p=-11,g=-11;
while(T--){
int t,r,s;
cin>>t>>r>>s;
if(r<5){
sayp+=100;
if(t-p<=10){
sayp+=50;
}
p=t;
}
else{
sayg+=100;
if(t-g<=10){
sayg+=50;
}
g=t;
}
}
cout<<sayp<<" "<<sayg;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |