結果

問題 No.677 10^Nの約数
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-22 07:07:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-10-03 12:00:19
合計ジャッジ時間 1,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,504 KB
testcase_01 AC 34 ms
52,832 KB
testcase_02 AC 35 ms
52,812 KB
testcase_03 AC 32 ms
52,672 KB
testcase_04 AC 33 ms
53,456 KB
testcase_05 AC 37 ms
53,456 KB
testcase_06 AC 34 ms
52,396 KB
testcase_07 AC 34 ms
52,892 KB
testcase_08 AC 33 ms
53,156 KB
testcase_09 AC 33 ms
52,000 KB
testcase_10 AC 35 ms
52,576 KB
testcase_11 AC 35 ms
53,036 KB
testcase_12 AC 37 ms
52,600 KB
testcase_13 AC 38 ms
52,424 KB
testcase_14 AC 38 ms
52,692 KB
testcase_15 AC 40 ms
52,316 KB
testcase_16 AC 39 ms
53,620 KB
testcase_17 AC 40 ms
53,812 KB
testcase_18 AC 39 ms
53,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = []
for i in range(n+1):
    for j in range(n+1):
        ans.append((2**i)*(5**j))
ans.sort()
for a in ans:
    print(a)
0