結果
問題 | No.677 10^Nの約数 |
ユーザー | kept1994 |
提出日時 | 2021-09-29 02:54:40 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 65,248 KB |
最終ジャッジ日時 | 2024-07-16 00:24:13 |
合計ジャッジ時間 | 7,098 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
59,760 KB |
testcase_01 | AC | 40 ms
53,116 KB |
testcase_02 | AC | 42 ms
53,180 KB |
testcase_03 | AC | 39 ms
52,688 KB |
testcase_04 | AC | 41 ms
52,772 KB |
testcase_05 | AC | 40 ms
52,488 KB |
testcase_06 | AC | 41 ms
52,592 KB |
testcase_07 | AC | 44 ms
58,652 KB |
testcase_08 | AC | 45 ms
59,272 KB |
testcase_09 | AC | 48 ms
58,580 KB |
testcase_10 | AC | 45 ms
58,980 KB |
testcase_11 | AC | 48 ms
59,524 KB |
testcase_12 | AC | 58 ms
59,120 KB |
testcase_13 | AC | 90 ms
59,360 KB |
testcase_14 | AC | 190 ms
58,248 KB |
testcase_15 | AC | 505 ms
58,316 KB |
testcase_16 | AC | 1,489 ms
58,236 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
ソースコード
#!/usr/bin/env python3 import sys def main(): N = int(input()) def getDivisors(n: int): lowerDivisors, upperDivisors = [], [] i = 1 while i * i <= n: # sqrt(N)まで試し割りする。 if n % i == 0: lowerDivisors.append(i) if i != n // i: upperDivisors.append(n//i) i += 1 return lowerDivisors + upperDivisors[::-1] print(*getDivisors(10 ** N),sep="\n") return if __name__ == '__main__': main()