結果
| 問題 | No.677 10^Nの約数 |
| コンテスト | |
| ユーザー |
moko_freedom
|
| 提出日時 | 2018-04-27 23:43:56 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 15,996 KB |
| 最終ジャッジ日時 | 2026-07-31 11:25:14 |
| 合計ジャッジ時間 | 3,286 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 17 |
ソースコード
n = int(input())
st = set()
for i in range(n + 1):
for j in range(n + 1):
st.add(i * 2 + j * 5)
st.remove(0)
for s in st:
print(s)
moko_freedom