結果
問題 | No.677 10^Nの約数 |
ユーザー | takey |
提出日時 | 2018-05-25 02:16:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 547 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,692 KB |
最終ジャッジ日時 | 2024-06-28 17:51:07 |
合計ジャッジ時間 | 6,193 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,256 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 24 ms
10,752 KB |
testcase_03 | AC | 25 ms
10,496 KB |
testcase_04 | AC | 24 ms
10,752 KB |
testcase_05 | AC | 25 ms
10,624 KB |
testcase_06 | AC | 26 ms
10,624 KB |
testcase_07 | AC | 25 ms
10,752 KB |
testcase_08 | AC | 29 ms
10,752 KB |
testcase_09 | AC | 36 ms
10,752 KB |
testcase_10 | AC | 73 ms
10,624 KB |
testcase_11 | AC | 157 ms
10,624 KB |
testcase_12 | AC | 500 ms
10,752 KB |
testcase_13 | AC | 1,365 ms
10,752 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
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)) if i >= 5: i += 4 for i in range(len(ans_front)): print(ans_front[i]) for i in range(len(ans_back)): print(ans_back[i])