Submission #499413

#TimeUsernameProblemLanguageResultExecution timeMemory
499413IbraheemLjeto (COCI21_ljeto)C++14
0 / 50
0 ms204 KiB
#include<bits/stdc++.h> using namespace std; int a[8]; int main(){ int n , m , t , k , o , p , r; cin >> n; while(n > 0){ cin >> t >> r >> k; if(a[r] - t <= 10){ if(r <= 4){ o = o + 150; } if(r >= 5){ p = p + 150; } }else if(a[r] - t > 10){ if(r <= 4){ o = o + 100; } if(r <= 5){ p = p + 100; } } t = a[r]; n--; } if(o > 100){o = o - 50;} if(p > 100){p = p - 50;} cout << o << " " << p; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:5:13: warning: unused variable 'm' [-Wunused-variable]
    5 |     int n , m , t , k , o , p , r;
      |             ^
Main.cpp:28:19: warning: 'p' may be used uninitialized in this function [-Wmaybe-uninitialized]
   28 |     if(p > 100){p = p - 50;}
      |                 ~~^~~~~~~~
Main.cpp:27:19: warning: 'o' may be used uninitialized in this function [-Wmaybe-uninitialized]
   27 |     if(o > 100){o = o - 50;}
      |                 ~~^~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...