반응형
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 | #include <iostream> using namespace std; int main() { int N,cnt = 0,cnt2=0,cnt5=0,tmp; cin >> N; for (int i = 2; i <= N; i++) { tmp = i; while (tmp % 5 == 0) { tmp /= 5; cnt5++; } while (tmp % 2 == 0) { tmp /= 2; cnt2++; } } for (int i = 0; i < N; i++) { cnt5--; cnt2--; cnt++; if (cnt5 == 0 || cnt2 == 0) break; } cout << cnt; } | cs |
'Algorithm' 카테고리의 다른 글
(C++) - 백준(BOJ) 2754 : 학점계산 답 (0) | 2016.12.10 |
---|---|
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 3009번:네번째 점 답 (0) | 2016.12.10 |
(C++) - 백준(BOJ) 4446번 : ROT13 답 (0) | 2016.12.10 |
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 5598번:카이사르 암호 답 (0) | 2016.12.10 |
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 1476번:날짜 계산 답 (0) | 2016.12.09 |