結果

問題 No.36 素数が嫌い!
ユーザー popketlepopketle
提出日時 2020-02-11 23:35:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-04-08 20:57:58
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,368 KB
testcase_01 AC 34 ms
10,368 KB
testcase_02 AC 33 ms
10,368 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 31 ms
10,368 KB
testcase_08 AC 32 ms
10,368 KB
testcase_09 AC 31 ms
10,368 KB
testcase_10 AC 33 ms
10,368 KB
testcase_11 AC 32 ms
10,368 KB
testcase_12 AC 32 ms
10,368 KB
testcase_13 WA -
testcase_14 AC 32 ms
10,368 KB
testcase_15 AC 32 ms
10,368 KB
testcase_16 AC 32 ms
10,368 KB
testcase_17 AC 29 ms
10,112 KB
testcase_18 AC 32 ms
10,368 KB
testcase_19 AC 31 ms
10,368 KB
testcase_20 AC 32 ms
10,368 KB
testcase_21 AC 31 ms
10,368 KB
testcase_22 AC 31 ms
10,368 KB
testcase_23 AC 32 ms
10,368 KB
testcase_24 AC 32 ms
10,368 KB
testcase_25 AC 32 ms
10,368 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

def is_prime(n,k=50):
    import random
    # nが素数かを高速で判定
    n = abs(n)
    if n==2: return True
    if n<2 or n&1==0: return False

    # ミラー・ラビンテストというらしい ちゃんと理解してないので要復習
    d=(n-1)>>1
    while d&1==0:
        d>>=1

    for i in range(k):
        a=random.randint(1,n-1)
        t=d
        y=pow(a,t,n)
        while t!=n-1 and y!=1 and y!=n-1:
            y=pow(y,2,n)
            t<<=1
        if y!=n-1 and t&1==0:
            return False
        return True
    

if n==1:
    print('NO')
else:
    if is_prime(n):
        print('NO')
    else:
        print('YES')
0