結果

問題 No.677 10^Nの約数
ユーザー gorugo30gorugo30
提出日時 2021-02-24 11:36:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-09-24 12:00:46
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,128 KB
testcase_01 AC 36 ms
53,156 KB
testcase_02 AC 35 ms
53,740 KB
testcase_03 AC 35 ms
52,500 KB
testcase_04 AC 36 ms
52,408 KB
testcase_05 AC 43 ms
52,692 KB
testcase_06 AC 37 ms
52,332 KB
testcase_07 AC 36 ms
53,088 KB
testcase_08 AC 36 ms
53,180 KB
testcase_09 AC 36 ms
52,520 KB
testcase_10 AC 37 ms
52,572 KB
testcase_11 AC 37 ms
53,744 KB
testcase_12 AC 38 ms
53,036 KB
testcase_13 AC 37 ms
54,392 KB
testcase_14 AC 37 ms
52,208 KB
testcase_15 AC 36 ms
53,228 KB
testcase_16 AC 37 ms
52,852 KB
testcase_17 AC 38 ms
54,140 KB
testcase_18 AC 37 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
st = set()
for ni in range(N + 1):
    for go in range(N + 1):
        st.add(2 ** ni * 5 ** go)
ans = sorted(list(st))
print(*ans, sep = "\n")
0