結果

問題 No.677 10^Nの約数
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-22 07:07:13
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 86,960 KB
実行使用メモリ 71,392 KB
最終ジャッジ日時 2023-07-27 00:04:25
合計ジャッジ時間 3,037 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,156 KB
testcase_01 AC 71 ms
71,364 KB
testcase_02 AC 70 ms
71,388 KB
testcase_03 AC 70 ms
71,248 KB
testcase_04 AC 71 ms
71,392 KB
testcase_05 AC 72 ms
71,256 KB
testcase_06 AC 70 ms
71,216 KB
testcase_07 AC 72 ms
71,324 KB
testcase_08 AC 69 ms
71,212 KB
testcase_09 AC 71 ms
71,008 KB
testcase_10 AC 70 ms
71,224 KB
testcase_11 AC 69 ms
71,256 KB
testcase_12 AC 70 ms
70,848 KB
testcase_13 AC 71 ms
71,096 KB
testcase_14 AC 71 ms
71,008 KB
testcase_15 AC 73 ms
71,176 KB
testcase_16 AC 70 ms
71,108 KB
testcase_17 AC 73 ms
71,356 KB
testcase_18 AC 73 ms
71,176 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