Recent Posts
Notice
No Rules Rules
주사위 게임 (feat. 백준, 2476번) 본문
728x90
반응형
주사위 게임
https://www.acmicpc.net/problem/2476
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <queue>
#include <math.h>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
priority_queue<int> q;
for(register int n = 0, a, b, c; n < N; ++n){
cin >> a >> b >> c;
if(a == b && b == c && c == a)
q.push(10000 + a * 1000);
else if(a == b)
q.push(1000 + a * 100);
else if(b == c)
q.push(1000 + b * 100);
else if(c == a)
q.push(1000 + c * 100);
else
q.push(max(max(a, b), c) * 100);
}
cout << q.top();
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
소음 (feat. 백준, 2935번) (0) | 2023.04.14 |
---|---|
숫자고르기 (feat. 백준, 2668번) (0) | 2023.04.13 |
카드 역배치 (feat. 백준, 10804번) (0) | 2023.04.12 |
카드 뽑기 (feat. 백준, 16204번) (0) | 2023.04.12 |
Networking (feat. 백준, 3803번) (0) | 2023.04.10 |
Comments