結果
| 問題 | No.312 置換処理 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-04-23 02:06:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| コード長 | 167 bytes |
| コンパイル時間 | 266 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 57,600 KB |
| 最終ジャッジ日時 | 2024-11-07 12:21:30 |
| 合計ジャッジ時間 | 3,449 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 45 |
ソースコード
n = int(input())
f = 3
while f * f <= n:
if n % f == 0:
print(f)
exit()
f += 1
if n % 2 == 0 and n != 4:
print(n // 2)
else:
print(n)