結果

問題 No.312 置換処理
ユーザー ronpooronpoo
提出日時 2023-09-08 10:12:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 82,472 KB
最終ジャッジ日時 2024-06-26 03:33:59
合計ジャッジ時間 4,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
76,416 KB
testcase_01 WA -
testcase_02 AC 86 ms
81,920 KB
testcase_03 WA -
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 83 ms
81,536 KB
testcase_06 AC 71 ms
74,112 KB
testcase_07 AC 81 ms
80,000 KB
testcase_08 AC 78 ms
78,592 KB
testcase_09 AC 61 ms
68,480 KB
testcase_10 AC 61 ms
69,376 KB
testcase_11 AC 79 ms
79,488 KB
testcase_12 AC 69 ms
72,832 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 40 ms
52,480 KB
testcase_23 AC 39 ms
52,224 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 40 ms
52,224 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 WA -
testcase_28 AC 41 ms
51,840 KB
testcase_29 AC 40 ms
52,096 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 53 ms
62,848 KB
testcase_33 AC 60 ms
67,200 KB
testcase_34 AC 60 ms
67,456 KB
testcase_35 AC 59 ms
67,584 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 39 ms
52,480 KB
testcase_38 WA -
testcase_39 AC 57 ms
66,584 KB
testcase_40 AC 52 ms
60,800 KB
testcase_41 AC 41 ms
52,352 KB
testcase_42 AC 48 ms
60,160 KB
testcase_43 AC 39 ms
52,592 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)+2)
p = sorted(p)
for v in p:
    if v != 2 and N % v == 0:
        ans = v
        break
else:
    ans = N
print(ans)
0