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