結果

問題 No.312 置換処理
ユーザー hanorverhanorver
提出日時 2015-12-05 16:18:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 87,236 KB
実行使用メモリ 76,020 KB
最終ジャッジ日時 2023-10-12 15:43:59
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,432 KB
testcase_01 WA -
testcase_02 AC 86 ms
75,860 KB
testcase_03 WA -
testcase_04 AC 70 ms
71,352 KB
testcase_05 AC 70 ms
71,540 KB
testcase_06 AC 74 ms
75,864 KB
testcase_07 AC 76 ms
75,868 KB
testcase_08 AC 72 ms
71,352 KB
testcase_09 AC 72 ms
71,332 KB
testcase_10 AC 74 ms
75,892 KB
testcase_11 AC 73 ms
75,864 KB
testcase_12 AC 71 ms
71,564 KB
testcase_13 AC 70 ms
71,556 KB
testcase_14 AC 70 ms
71,564 KB
testcase_15 AC 70 ms
71,572 KB
testcase_16 AC 71 ms
71,688 KB
testcase_17 AC 71 ms
71,648 KB
testcase_18 AC 70 ms
71,644 KB
testcase_19 AC 71 ms
71,660 KB
testcase_20 AC 71 ms
71,352 KB
testcase_21 AC 69 ms
71,740 KB
testcase_22 AC 70 ms
71,520 KB
testcase_23 AC 70 ms
71,128 KB
testcase_24 AC 69 ms
71,684 KB
testcase_25 WA -
testcase_26 AC 69 ms
71,668 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 68 ms
71,500 KB
testcase_32 AC 72 ms
75,980 KB
testcase_33 AC 76 ms
75,896 KB
testcase_34 AC 75 ms
75,836 KB
testcase_35 AC 73 ms
75,892 KB
testcase_36 WA -
testcase_37 AC 70 ms
71,752 KB
testcase_38 WA -
testcase_39 AC 71 ms
71,468 KB
testcase_40 AC 70 ms
71,312 KB
testcase_41 AC 69 ms
71,128 KB
testcase_42 AC 70 ms
71,496 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())
for i in range(3,int(math.sqrt(n))):
 if n%i==0:
  print(i)
  break
else:print(n)
0