2439번(정답)
별찍기-2
1 | n = int(input()) |
2441번(정답)
별찍기-4
1 | n = int(input()) |
7489번(오답)
팩토리얼
1 | for test in range(int(input())): |
- 테스트 갯수 입력후 숫자 n 입력하면 factorial 결과에서 0이 아닌 가장 마지막 숫자 출력.
이를 테스트 갯수만큼 실행. (실행은 되지만 백준online에서 오답이라고 표시함)
왜 틀렸을까..?
10828번(정답)
스택
1 | n = int(input()) |