結果

問題 No.677 10^Nの約数
ユーザー rlangevinrlangevin
提出日時 2024-06-05 08:54:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-06-05 08:54:40
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,120 KB
testcase_01 AC 34 ms
52,808 KB
testcase_02 AC 35 ms
53,740 KB
testcase_03 AC 33 ms
53,000 KB
testcase_04 AC 34 ms
51,996 KB
testcase_05 AC 33 ms
53,008 KB
testcase_06 AC 36 ms
53,076 KB
testcase_07 AC 32 ms
52,340 KB
testcase_08 AC 32 ms
52,388 KB
testcase_09 AC 32 ms
52,204 KB
testcase_10 AC 35 ms
53,232 KB
testcase_11 AC 32 ms
52,628 KB
testcase_12 AC 33 ms
52,300 KB
testcase_13 AC 33 ms
53,884 KB
testcase_14 AC 33 ms
52,444 KB
testcase_15 AC 33 ms
53,764 KB
testcase_16 AC 32 ms
52,924 KB
testcase_17 AC 33 ms
52,948 KB
testcase_18 AC 34 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
two, five = [], []
for i in range(N + 1):
    two.append(2**i)
    five.append(5**i)
ans = []
for a in two:
    for b in five:
        ans.append(a*b)

for a in sorted(ans):
    print(a)
0