結果

問題 No.677 10^Nの約数
ユーザー takeytakey
提出日時 2018-05-25 02:14:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 510 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-28 17:50:52
合計ジャッジ時間 5,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,256 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 34 ms
10,880 KB
testcase_10 AC 62 ms
10,752 KB
testcase_11 AC 118 ms
10,752 KB
testcase_12 AC 385 ms
10,752 KB
testcase_13 AC 886 ms
10,752 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

if __name__ == "__main__":
    N = int(input())
    ans_front = []
    ans_back = []
    a = 10**N
    if a == 1:
        print(1)
        exit()
    
    for i in range(1, int(a/2)+1):
        if len(ans_back) > 0 and i >= ans_back[0]:
            break
        if a%i == 0:
            ans_front.append(i)
            if int(a/i) != i:
                ans_back.insert(0, int(a/i))
    for i in range(len(ans_front)):
        print(ans_front[i])
    for i in range(len(ans_back)):
        print(ans_back[i])
0