제출 #714125

#제출 시각아이디문제언어결과실행 시간메모리
714125monglaPreokret (COCI18_preokret)C++98
2 / 50
1 ms340 KiB
#include<bits/stdc++.h>
#define MAX 2880
using namespace std;
int t1[MAX+5],t2[MAX+5];
int main(){
	int a,b,x;
    cin>>a; for(int i=1;i<=a;i++) cin>>x,t1[x]++;
    cin>>b; for(int i=1;i<=b;i++) cin>>x,t2[x]++;
    
    int s1=0,s2=0,exceed=0,ans=0;
    char winner='\0';
    for(int i=1;i<=MAX;i++){
        if(t1[i]) s1++;
        if(t2[i]) s2++;
        ans=s1+s2;
        
        if(i==MAX/2) cout<<ans<<'\n'; 
        
        if(s1>s2) 
            if(winner=='B')                
                exceed++;
            winner='A';

        if(s1<s2)
            if(winner=='A')
                exceed++;
            winner='B';
    }
    cout<<exceed;
    return 0;
} 

컴파일 시 표준 에러 (stderr) 메시지

preokret.cpp: In function 'int main()':
preokret.cpp:19:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   19 |         if(s1>s2)
      |         ^~
preokret.cpp:22:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   22 |             winner='A';
      |             ^~~~~~
preokret.cpp:24:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   24 |         if(s1<s2)
      |         ^~
preokret.cpp:27:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   27 |             winner='B';
      |             ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...