結果

問題 No.677 10^Nの約数
ユーザー osrgy01osrgy01
提出日時 2021-03-29 10:24:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 284 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-11-29 09:43:14
合計ジャッジ時間 27,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
16,128 KB
testcase_01 AC 35 ms
16,128 KB
testcase_02 AC 32 ms
15,872 KB
testcase_03 AC 31 ms
21,376 KB
testcase_04 AC 34 ms
15,872 KB
testcase_05 AC 32 ms
21,248 KB
testcase_06 AC 33 ms
16,000 KB
testcase_07 AC 45 ms
21,376 KB
testcase_08 AC 91 ms
16,000 KB
testcase_09 AC 330 ms
21,504 KB
testcase_10 AC 1,517 ms
16,000 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a,b=2**n,5**n
ans1=set()
ans2=set()
ans3=set()
for i in range(1,a+1):
    if a%i==0:
        ans1.add(i)
for i in range(1,b+1):
    if b%i==0:
        ans2.add(i)
for i in ans1:
    for j in ans2:
        ans3.add(i*j)
print(*sorted(i for i in ans1|ans2|ans3),sep='\n')
0