結果
| 問題 | No.312 置換処理 |
| コンテスト | |
| ユーザー |
tookunn_1213
|
| 提出日時 | 2015-12-12 13:55:45 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 59 ms |
| コンパイル使用メモリ | 81,276 KB |
| 実行使用メモリ | 82,816 KB |
| 最終ジャッジ日時 | 2026-07-18 00:48:40 |
| 合計ジャッジ時間 | 4,719 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 39 WA * 6 |
ソースコード
import math N = int(raw_input()) flag = False for i in range(3,long(math.sqrt(N)) + 1): if N % i == 0: flag = True print i break if not flag:print N
tookunn_1213