結果
| 問題 | No.312 置換処理 |
| コンテスト | |
| ユーザー |
JunOnuma
|
| 提出日時 | 2017-05-18 16:34:27 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 123 bytes |
| 記録 | |
| コンパイル時間 | 65 ms |
| コンパイル使用メモリ | 81,280 KB |
| 実行使用メモリ | 82,560 KB |
| 最終ジャッジ日時 | 2026-07-18 13:31:29 |
| 合計ジャッジ時間 | 4,501 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 WA * 18 |
ソースコード
n = int(raw_input())
d = 3
while d * d <= n:
if n % d == 0:
print d
break
d += 2
else:
print n
JunOnuma