結果

問題 No.2751 429-like Number
ユーザー miho-4miho-4
提出日時 2024-05-10 22:06:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,052 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 157,444 KB
最終ジャッジ日時 2024-05-10 22:07:15
合計ジャッジ時間 21,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 460 ms
140,924 KB
testcase_01 AC 456 ms
141,216 KB
testcase_02 AC 510 ms
143,060 KB
testcase_03 AC 456 ms
142,472 KB
testcase_04 AC 514 ms
141,244 KB
testcase_05 AC 455 ms
141,280 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 780 ms
156,676 KB
testcase_09 AC 565 ms
152,812 KB
testcase_10 AC 584 ms
152,088 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 703 ms
155,524 KB
testcase_14 AC 552 ms
152,404 KB
testcase_15 AC 558 ms
153,408 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

def mr_test_normal(n: int):
    assert n > 1
    if n == 2:
        return True
    elif n%2 == 0:
        return False
    d = n - 1
    s = 0
    while d & 1 == 0:
        s += 1; d >>= 1
    
    k = 20
    for _ in range(k):
        a = random.randint(2, n-1)
        x = pow(a, d, n) # a^d mod n
        if x == 1 or x == n-1:
            continue
        for _ in range(s):
            x = pow(x, 2, n)
            if x == n-1: # a^(d*2^r) mod n
                break
        else: return False
    return True

P=[]
prime = [True for i in range(10**7+1)]
p = 2

while (p * p <= 10**7+1):
  if prime[p] ==1:
    P.append(p)
    for i in range(p * 2, 10**7+1, p):
      prime[i] = 0
  p += 1

l=len(P)
t=int(input())
for _ in range(t):
  n=int(input())
  flag=0
  for i in range(l):
    if n%P[i]==0:
      n//=P[i]
      for j in range(i,l):
        if n%P[j]==0:
          n//=P[j]
          if n==1:break
          if mr_test_normal(n):
            flag=1
          break
    if flag:
      break
  print("Yes" if flag else "No")
0