結果

問題 No.312 置換処理
ユーザー ronpooronpoo
提出日時 2023-09-08 10:15:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-06-26 03:36:39
合計ジャッジ時間 4,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
76,800 KB
testcase_01 AC 76 ms
75,904 KB
testcase_02 AC 88 ms
82,176 KB
testcase_03 AC 90 ms
82,048 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 84 ms
81,152 KB
testcase_06 AC 72 ms
73,856 KB
testcase_07 AC 83 ms
80,000 KB
testcase_08 AC 79 ms
78,336 KB
testcase_09 AC 62 ms
68,736 KB
testcase_10 AC 64 ms
69,632 KB
testcase_11 AC 80 ms
79,360 KB
testcase_12 AC 69 ms
73,344 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
52,096 KB
testcase_23 WA -
testcase_24 AC 39 ms
52,224 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 AC 40 ms
52,480 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 39 ms
52,096 KB
testcase_30 AC 54 ms
63,360 KB
testcase_31 WA -
testcase_32 AC 54 ms
62,592 KB
testcase_33 AC 61 ms
67,328 KB
testcase_34 AC 61 ms
67,456 KB
testcase_35 AC 60 ms
67,456 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 39 ms
52,224 KB
testcase_38 WA -
testcase_39 AC 59 ms
66,560 KB
testcase_40 AC 50 ms
60,672 KB
testcase_41 AC 40 ms
52,608 KB
testcase_42 AC 50 ms
60,672 KB
testcase_43 AC 40 ms
51,968 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

# 素数列挙
def prime(x):
    prime = [x if x%2==1 else 2 for x in range(x+1)]
    prime[0] = 1

    for i in range(3, int(x**0.5)+2, 2):
        if prime[i] != i:
            continue   
        for j in range(2*i, x+1, i):
            if prime[j] == j:
                prime[j] = i

    p = {i for i in range(2, x+1) if prime[i] == i}
    return p

p = prime(int(N**0.5)+10)
p = sorted(p)
for v in p:
    if v != 2 and N % v == 0:
        ans = v
        break
else:
    if N % 2 == 0:
        ans = N // 2
    else:
        ans = N
print(ans)
0