| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 920404 | SuPythony | Ljeto (COCI21_ljeto) | C++17 | 1 ms | 348 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int n; cin>>n;
ll prev=-1;
ll prev_p=0;
ll p=0;
ll b=0;
while (n--) {
ll t; int a,b;
cin>>t>>a>>b;
if (prev==-1) {
prev=t;
prev_p=a;
if (a<=4) p+=100;
else b+=100;
} else {
if (prev+10>=t&&a==prev_p) {
prev=t;
if (a<=4) p+=150;
else b+=150;
} else {
prev=t;
prev_p=a;
if (a<=4) p+=100;
else b+=100;
}
}
}
cout<<p<<" "<<b;
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... | ||||
