Recent Posts
Notice
No Rules Rules
찬반투표 (feat. 백준, 27736번) 본문
728x90
반응형
찬반투표
https://www.acmicpc.net/problem/27736
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, a = 0, b = 0, c = 0; // a : 찬성, b : 반대, c : 포기
cin >> N;
for(register int n = 0, v; n < N; ++n){
cin >> v;
if(v == 1)
++a;
else if(v == -1)
++b;
else
++c;
}
register int m = (N % 2) ? (N >> 1) + 1 : N >> 1;
if(c >= m)
cout << "INVALID";
else
cout << (a > b ? "APPROVED" : "REJECTED");
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
팝핀 소다 (feat. 백준, 27724번) (0) | 2023.03.14 |
---|---|
분수 합 (feat. 백준, 1735번) (0) | 2023.03.14 |
유럽여행 (feat. 백준, 1185번) (0) | 2023.03.10 |
정복자 (feat. 백준, 14950번) (0) | 2023.03.10 |
전기가 부족해 (feat. 백준, 10423번) (0) | 2023.03.10 |
Comments