結果

問題 No.2751 429-like Number
ユーザー miho-4miho-4
提出日時 2024-05-10 22:00:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 155,932 KB
最終ジャッジ日時 2024-05-10 22:01:08
合計ジャッジ時間 18,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 421 ms
139,508 KB
testcase_01 AC 414 ms
139,672 KB
testcase_02 AC 436 ms
141,816 KB
testcase_03 AC 421 ms
141,708 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 531 ms
150,628 KB
testcase_10 AC 505 ms
150,988 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 647 ms
154,848 KB
testcase_14 AC 519 ms
150,700 KB
testcase_15 AC 619 ms
152,556 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 #


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

S=set(P)
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 in S:
            flag=1
            break
    if flag:
      break
  print("Yes" if flag else "No")
0