結果
問題 |
No.677 10^Nの約数
|
ユーザー |
![]() |
提出日時 | 2018-05-07 21:08:05 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 100 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 15,872 KB |
最終ジャッジ日時 | 2024-06-28 02:19:58 |
合計ジャッジ時間 | 5,587 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 6 TLE * 1 -- * 10 |
ソースコード
N = int(input()) num = int(10 ** N) for i in range(1,num+1): if num % i == 0: print(i)