結果

問題 No.677 10^Nの約数
ユーザー osrgy01osrgy01
提出日時 2021-03-29 10:24:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 284 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-05-06 23:06:06
合計ジャッジ時間 6,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
17,692 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 36 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 43 ms
10,752 KB
testcase_08 AC 95 ms
10,752 KB
testcase_09 AC 327 ms
10,880 KB
testcase_10 AC 1,508 ms
10,752 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

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