結果
問題 |
No.677 10^Nの約数
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 TLE * 1 -- * 1 |
ソースコード
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)