結果
問題 |
No.677 10^Nの約数
|
ユーザー |
|
提出日時 | 2018-04-27 22:23:21 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 471 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 21:48:01 |
合計ジャッジ時間 | 1,581 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 17 |
ソースコード
N = input() S = set() for i in xrange(70): for j in xrange(70): a = 2**i * 5**j if N % a == 0: S.add(a) S = sorted(list(S)) for s in S: print s