Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 핑거스타일
- 악보
- 아이유
- IT
- 개발자
- 봄 사랑 벚꽃 말고
- 말 더듬
- 오라클
- Inside Of Me
- 인덱스
- 니가 참 좋아
- 신입
- SQL 처리
- 러블리즈
- oracle
- db
- 오라클 아키텍처
- 천공의 시간
- DBMS
- 스위트라떼
- DBMS 구성요소
- 6학년 8반 1분단
- index
- 장범준
- I'm fine thank you
- 레이디스코드
- nginx
- 기타
- 슬픔의 후에
- 데이터베이스
Archives
취미로 음악을 하는 개발자
[C++] 백준 2476. 주사위 게임 본문
728x90
#include <iostream>
#include <list>
#include <algorithm>
using namespace std;
int main()
{
int count;
cin >> count;
int result = 0;
for (int c = 0; c < count; c++)
{
list<int> arr;
list<int>::iterator it;
int temp;
int max = 0;
int same = 0;
int sum = 0;
for (int i = 0; i < 3; i++)
{
cin >> temp;
if (max < temp)
max = temp;
it = find(arr.begin(), arr.end(), temp);
if (it != arr.end())
same = temp;
else
arr.push_back(temp);
}
if (arr.size() == 3)
sum = max * 100;
else if (arr.size() == 2)
sum = 1000 + (same*100);
else
sum = 10000 + (same * 1000);
if (result < sum)
result = sum;
}
cout << result << endl;
}
2480. 주사위 세개 문제에서 한 번하는 것을 원하는 만큼 시도하는 것으로 바뀌었다.
'공대인 > Nojam' 카테고리의 다른 글
[C++] 백준 1592. 영식이와 친구들 (1) | 2019.05.11 |
---|---|
[C++] 백준 2480. 주사위 세개 (0) | 2019.04.24 |
[C++] 백준 11653. 소인수분해 (0) | 2019.04.23 |
[C++] 백준 1934. 최소공배수 (0) | 2019.04.23 |
[C++] 백준 10971. 외판원 순회 2 (0) | 2019.04.18 |
Comments