結果

問題 No.312 置換処理
ユーザー mlihua09mlihua09
提出日時 2020-08-28 20:48:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 59,080 KB
最終ジャッジ日時 2024-11-13 23:44:10
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,792 KB
testcase_01 AC 48 ms
58,064 KB
testcase_02 AC 50 ms
57,968 KB
testcase_03 AC 51 ms
58,060 KB
testcase_04 AC 37 ms
53,080 KB
testcase_05 AC 36 ms
53,420 KB
testcase_06 AC 38 ms
58,164 KB
testcase_07 AC 44 ms
57,608 KB
testcase_08 AC 36 ms
53,276 KB
testcase_09 AC 36 ms
52,320 KB
testcase_10 AC 39 ms
57,812 KB
testcase_11 AC 39 ms
57,792 KB
testcase_12 AC 35 ms
53,168 KB
testcase_13 AC 37 ms
52,620 KB
testcase_14 AC 36 ms
52,420 KB
testcase_15 AC 35 ms
53,080 KB
testcase_16 AC 35 ms
52,076 KB
testcase_17 AC 36 ms
52,192 KB
testcase_18 AC 37 ms
53,052 KB
testcase_19 AC 35 ms
53,344 KB
testcase_20 AC 36 ms
52,220 KB
testcase_21 AC 36 ms
52,876 KB
testcase_22 AC 35 ms
52,092 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,764 KB
testcase_25 AC 36 ms
52,384 KB
testcase_26 AC 36 ms
52,744 KB
testcase_27 AC 36 ms
52,196 KB
testcase_28 AC 35 ms
53,116 KB
testcase_29 AC 36 ms
52,712 KB
testcase_30 AC 41 ms
57,952 KB
testcase_31 AC 36 ms
52,900 KB
testcase_32 AC 39 ms
59,080 KB
testcase_33 AC 44 ms
58,624 KB
testcase_34 AC 43 ms
57,924 KB
testcase_35 AC 39 ms
58,352 KB
testcase_36 AC 36 ms
52,336 KB
testcase_37 AC 36 ms
52,696 KB
testcase_38 AC 36 ms
52,348 KB
testcase_39 AC 36 ms
53,008 KB
testcase_40 AC 37 ms
52,704 KB
testcase_41 AC 36 ms
52,612 KB
testcase_42 AC 37 ms
52,488 KB
testcase_43 AC 37 ms
53,204 KB
testcase_44 AC 37 ms
52,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

for i in range(3, int(N ** 0.5) + 2):
    
    if N % i == 0:
        
        print(i)
        
        exit()
if N % 2:
    print(N)
    
else:
    
    print(N // 2)
0