結果

問題 No.312 置換処理
ユーザー ああいいああいい
提出日時 2022-03-17 21:55:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 59,028 KB
最終ジャッジ日時 2024-10-01 20:52:37
合計ジャッジ時間 3,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,368 KB
testcase_01 AC 48 ms
58,056 KB
testcase_02 AC 52 ms
57,588 KB
testcase_03 AC 52 ms
58,840 KB
testcase_04 AC 35 ms
52,756 KB
testcase_05 AC 36 ms
52,464 KB
testcase_06 AC 40 ms
57,512 KB
testcase_07 AC 42 ms
58,244 KB
testcase_08 AC 35 ms
52,680 KB
testcase_09 AC 36 ms
52,264 KB
testcase_10 AC 39 ms
58,432 KB
testcase_11 AC 38 ms
59,028 KB
testcase_12 AC 36 ms
52,280 KB
testcase_13 AC 36 ms
52,032 KB
testcase_14 AC 36 ms
52,812 KB
testcase_15 AC 36 ms
52,320 KB
testcase_16 AC 35 ms
52,488 KB
testcase_17 AC 35 ms
52,136 KB
testcase_18 AC 35 ms
53,756 KB
testcase_19 AC 36 ms
53,788 KB
testcase_20 AC 36 ms
52,700 KB
testcase_21 AC 36 ms
52,628 KB
testcase_22 AC 35 ms
52,268 KB
testcase_23 AC 35 ms
52,868 KB
testcase_24 AC 35 ms
52,864 KB
testcase_25 AC 36 ms
52,676 KB
testcase_26 AC 34 ms
51,940 KB
testcase_27 AC 35 ms
52,748 KB
testcase_28 AC 34 ms
52,212 KB
testcase_29 AC 36 ms
52,280 KB
testcase_30 AC 40 ms
58,644 KB
testcase_31 AC 36 ms
52,152 KB
testcase_32 AC 40 ms
57,648 KB
testcase_33 AC 43 ms
58,364 KB
testcase_34 AC 42 ms
58,040 KB
testcase_35 AC 39 ms
58,184 KB
testcase_36 AC 35 ms
52,616 KB
testcase_37 AC 36 ms
52,524 KB
testcase_38 AC 35 ms
52,876 KB
testcase_39 AC 35 ms
52,324 KB
testcase_40 AC 37 ms
52,732 KB
testcase_41 AC 37 ms
52,032 KB
testcase_42 AC 36 ms
52,036 KB
testcase_43 AC 35 ms
53,752 KB
testcase_44 AC 36 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())


import sys
if N <= 5:
    print(N)
    exit()
d = 3
while d * d <= N:
    if N % d == 0:
        print(d)
        exit()
    d += 1

if N % 2 == 0:
    print(N//2)
else:
    print(N)
0