Submission #499482

#TimeUsernameProblemLanguageResultExecution timeMemory
499482IbraheemLjeto (COCI21_ljeto)C++14
25 / 50
1 ms204 KiB
#include<bits/stdc++.h> using namespace std; int a[8]; int main(){ a[1] = 1; a[2] = 1; a[3] = 1; a[4] = 1; a[5] = 1; a[6] = 1; a[7] = 1; a[8] = 1; int n , m , l , r , i , p = 0 , k , t , o = 0; cin >> n; i = n; while(n > 0){ cin >> t >> r >> k; if(t - a[r] > 10){ if(r <= 4){ o = o + 100; } if(r >= 5){ p = p + 100; } } if(n < i && t - a[r] <= 10){ if(r <= 4){ o = o + 150; }if(r >= 5){ p = p + 150; } } a[k] = 0; a[r] = t; n--; } cout << o << ' ' << p; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:13:13: warning: unused variable 'm' [-Wunused-variable]
   13 |     int n , m , l , r , i , p = 0 , k , t , o = 0;
      |             ^
Main.cpp:13:17: warning: unused variable 'l' [-Wunused-variable]
   13 |     int n , m , l , r , i , p = 0 , k , t , o = 0;
      |                 ^
Main.cpp:12:8: warning: array subscript 8 is above array bounds of 'int [8]' [-Warray-bounds]
   12 |     a[8] = 1;
      |     ~~~^
Main.cpp:3:5: note: while referencing 'a'
    3 | int a[8];
      |     ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...