Submission #1027358

#TimeUsernameProblemLanguageResultExecution timeMemory
1027358vjudge1Ljeto (COCI21_ljeto)C++17
0 / 50
0 ms348 KiB
#include <bits/stdc++.h> using namespace std; int main() { int N, T, A, B, Time, PointA, PointB, Current, PrevTime, CurrentS; cin>>N; for(int i=0; i<N; i++){ cin>>T>>A>>B; if (A==CurrentS && Current==1 && (T-Time)<=10){ PointA+=50; } if (A==CurrentS && Current==2 && (T-Time)<=10){ PointB+=50; } if (A==1 || A==2 || A==3 || A==4){ PointA+=100; Current=1; CurrentS=A; } else { PointB+=100; Current=2; CurrentS=A; } Time=T; } cout<<PointA<<" "<<PointB; return 0; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:7:52: warning: unused variable 'PrevTime' [-Wunused-variable]
    7 |     int N, T, A, B, Time, PointA, PointB, Current, PrevTime, CurrentS;
      |                                                    ^~~~~~~~
Main.cpp:29:24: warning: 'PointB' may be used uninitialized in this function [-Wmaybe-uninitialized]
   29 |     cout<<PointA<<" "<<PointB;
      |                        ^~~~~~
Main.cpp:29:19: warning: 'PointA' may be used uninitialized in this function [-Wmaybe-uninitialized]
   29 |     cout<<PointA<<" "<<PointB;
      |                   ^~~
Main.cpp:11:9: warning: 'CurrentS' may be used uninitialized in this function [-Wmaybe-uninitialized]
   11 |         if (A==CurrentS && Current==1 && (T-Time)<=10){
      |         ^~
Main.cpp:11:25: warning: 'Current' may be used uninitialized in this function [-Wmaybe-uninitialized]
   11 |         if (A==CurrentS && Current==1 && (T-Time)<=10){
      |             ~~~~~~~~~~~~^~~~~~~~~~~~~
Main.cpp:11:44: warning: 'Time' may be used uninitialized in this function [-Wmaybe-uninitialized]
   11 |         if (A==CurrentS && Current==1 && (T-Time)<=10){
      |                                          ~~^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...