結果

問題 No.312 置換処理
ユーザー convexineqconvexineq
提出日時 2020-12-08 10:19:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 59,368 KB
最終ジャッジ日時 2024-09-17 14:28:30
合計ジャッジ時間 3,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,424 KB
testcase_01 WA -
testcase_02 AC 57 ms
58,600 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,584 KB
testcase_05 AC 37 ms
52,580 KB
testcase_06 AC 42 ms
59,368 KB
testcase_07 AC 44 ms
58,792 KB
testcase_08 AC 38 ms
52,284 KB
testcase_09 AC 38 ms
52,484 KB
testcase_10 AC 41 ms
57,720 KB
testcase_11 AC 43 ms
57,996 KB
testcase_12 AC 38 ms
51,812 KB
testcase_13 AC 38 ms
52,312 KB
testcase_14 AC 38 ms
53,216 KB
testcase_15 AC 38 ms
52,112 KB
testcase_16 AC 38 ms
52,192 KB
testcase_17 AC 37 ms
52,764 KB
testcase_18 AC 38 ms
52,596 KB
testcase_19 AC 39 ms
53,316 KB
testcase_20 AC 38 ms
52,976 KB
testcase_21 AC 38 ms
52,628 KB
testcase_22 AC 39 ms
53,316 KB
testcase_23 AC 38 ms
52,308 KB
testcase_24 AC 38 ms
53,168 KB
testcase_25 WA -
testcase_26 AC 38 ms
51,648 KB
testcase_27 WA -
testcase_28 AC 38 ms
51,780 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 38 ms
52,028 KB
testcase_32 AC 42 ms
58,052 KB
testcase_33 AC 45 ms
58,104 KB
testcase_34 AC 46 ms
58,508 KB
testcase_35 AC 42 ms
58,872 KB
testcase_36 AC 39 ms
52,320 KB
testcase_37 AC 38 ms
51,776 KB
testcase_38 AC 38 ms
52,012 KB
testcase_39 AC 38 ms
52,604 KB
testcase_40 AC 39 ms
52,584 KB
testcase_41 AC 39 ms
52,720 KB
testcase_42 AC 38 ms
51,808 KB
testcase_43 AC 38 ms
53,716 KB
testcase_44 AC 37 ms
51,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(3,n+1):
    if i*i > n:
        print(n)
        break
    if n%i==0:
        print(i)
        break
0