結果

問題 No.677 10^Nの約数
ユーザー mlihua09mlihua09
提出日時 2020-08-29 20:41:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-04-27 01:19:22
合計ジャッジ時間 1,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,992 KB
testcase_01 AC 35 ms
52,476 KB
testcase_02 AC 36 ms
52,800 KB
testcase_03 AC 35 ms
53,228 KB
testcase_04 AC 35 ms
52,616 KB
testcase_05 AC 36 ms
52,200 KB
testcase_06 AC 36 ms
51,760 KB
testcase_07 AC 36 ms
52,824 KB
testcase_08 AC 39 ms
53,168 KB
testcase_09 AC 35 ms
52,408 KB
testcase_10 AC 34 ms
52,944 KB
testcase_11 AC 36 ms
52,664 KB
testcase_12 AC 35 ms
52,884 KB
testcase_13 AC 35 ms
51,996 KB
testcase_14 AC 35 ms
53,164 KB
testcase_15 AC 36 ms
52,324 KB
testcase_16 AC 37 ms
54,116 KB
testcase_17 AC 37 ms
52,264 KB
testcase_18 AC 36 ms
53,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

X = []

for i in range(N + 1):
    
    for j in range(N + 1):
        
        X += [2 ** i * 5 ** j]
        
X.sort()

print(*X, sep='\n')
0