結果
| 問題 |
No.312 置換処理
|
| コンテスト | |
| ユーザー |
hanorver
|
| 提出日時 | 2015-12-05 16:18:43 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 108 bytes |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 57,600 KB |
| 最終ジャッジ日時 | 2024-09-14 14:26:09 |
| 合計ジャッジ時間 | 3,424 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 34 WA * 11 |
ソースコード
import math n=int(input()) for i in range(3,int(math.sqrt(n))): if n%i==0: print(i) break else:print(n)
hanorver