結果
| 問題 | No.312 置換処理 |
| コンテスト | |
| ユーザー |
Cyberdog-しばいぬ-
|
| 提出日時 | 2019-02-11 12:16:13 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 201 ms / 2,000 ms |
| コード長 | 138 bytes |
| コンパイル時間 | 348 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-11-15 12:26:25 |
| 合計ジャッジ時間 | 4,090 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 45 |
ソースコード
N = int(input())
for i in range(3, 10**6):
if N % i == 0:
print(i)
exit()
print(int(N/2)) if N % 2 == 0 else print(N)
Cyberdog-しばいぬ-