結果
| 問題 | No.312 置換処理 |
| コンテスト | |
| ユーザー |
todo_2mariko
|
| 提出日時 | 2019-03-20 15:20:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 306 ms |
| コンパイル使用メモリ | 20,840 KB |
| 実行使用メモリ | 23,332 KB |
| 最終ジャッジ日時 | 2026-04-07 03:45:49 |
| 合計ジャッジ時間 | 4,001 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 2 TLE * 1 -- * 42 |
ソースコード
n = int(input())
i = 3
if n % 2 == 0:
print(4)
exit()
while True:
if n % i == 0:
print(i)
break
i += 1
todo_2mariko