結果

問題 No.677 10^Nの約数
ユーザー hanorverhanorver
提出日時 2018-04-29 14:46:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 206 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 66,488 KB
最終ジャッジ日時 2024-06-27 23:32:48
合計ジャッジ時間 6,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,472 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 39 ms
57,600 KB
testcase_08 AC 39 ms
57,216 KB
testcase_09 AC 38 ms
57,472 KB
testcase_10 AC 41 ms
57,984 KB
testcase_11 AC 43 ms
57,984 KB
testcase_12 AC 54 ms
57,344 KB
testcase_13 AC 82 ms
57,856 KB
testcase_14 AC 174 ms
57,728 KB
testcase_15 AC 461 ms
57,984 KB
testcase_16 AC 1,367 ms
57,856 KB
testcase_17 TLE -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = 10 ** int(input())

i = 1

ans = list()
while i * i <= n:
    if n % i == 0:
        ans.append(i)
        if n / i != i:
            ans.append(n // i)
    i += 1

ans.sort()
for i in ans:
    print(i)
0