結果

問題 No.677 10^Nの約数
ユーザー konabekonabe
提出日時 2018-04-27 22:33:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 172 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 10,504 KB
実行使用メモリ 815,672 KB
最終ジャッジ日時 2023-09-10 06:27:39
合計ジャッジ時間 4,530 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 16 ms
7,812 KB
testcase_02 AC 15 ms
7,788 KB
testcase_03 AC 16 ms
7,960 KB
testcase_04 AC 16 ms
7,876 KB
testcase_05 AC 17 ms
7,792 KB
testcase_06 AC 16 ms
8,340 KB
testcase_07 AC 19 ms
8,728 KB
testcase_08 AC 24 ms
11,212 KB
testcase_09 AC 51 ms
20,664 KB
testcase_10 AC 159 ms
59,440 KB
testcase_11 AC 574 ms
215,512 KB
testcase_12 MLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
tmp = [1, 2, 5, 10]
res = [1, 2, 5, 10]
for i in range(N-1):
    res = [i*j for i in tmp for j in res]
for i in sorted(list(set(res))):
    print(i)

    
0