반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <iostream> using namespace std; int main() { int e, s, m, E = 1, S = 1, M = 1, total = 1; cin >> e >> s >> m; while (1) { if (E == e&&S == s&&M == m) break; E++; if (E == 16) E /= 16; S++; if (S == 29) S /= 29; M++; if (M == 20) M /= 20; total++; } cout << total; } | cs |
'Algorithm' 카테고리의 다른 글
(C++) - 백준(BOJ) 4446번 : ROT13 답 (0) | 2016.12.10 |
---|---|
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 5598번:카이사르 암호 답 (0) | 2016.12.10 |
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 1037번:약수 답 (0) | 2016.12.07 |
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 11728번:배열 합치기 답 (0) | 2016.12.07 |
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 5622번:다이얼 답 (0) | 2016.12.06 |