Submission #704178

# Submission time Handle Problem Language Result Execution time Memory
704178 2023-03-01T21:19:57 Z Uniq0rn Ljeto (COCI21_ljeto) C++14
10 / 50
1 ms 316 KB
#include <bits/stdc++.h> 
using namespace std; 
 
#define ll long long int 
#define ld long double
#define vi(x)  vector<x>
#define pb push_back
#define all(x) begin(x), end(x)
#define sz(x) (int) (x).size()
 
using pi = pair<int,int>;
#define f first
#define s second
#define mp make_pair
int main()
{
    cin.tie(nullptr)->ios_base::sync_with_stdio(false);
    int n;cin >> n;
    int last = -1;
    int score1 = 0,score2 = 0;
    while(n--){
        int t,a,b;cin >> t >> a >> b;
        int add = 100;
        if(last != -1 && t-last <= 10){
            add += 50;
        }
        last = t;
        score1 += add*(a < 5);
        score2 += add*(a > 4);
    }
    cout << score1 << ' ' << score2;
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 316 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Incorrect 1 ms 316 KB Output isn't correct
4 Halted 0 ms 0 KB -