結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
68,108 KB
testcase_01 AC 58 ms
66,480 KB
testcase_02 AC 57 ms
66,372 KB
testcase_03 AC 57 ms
67,212 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 100 ms
79,048 KB
testcase_10 AC 120 ms
79,656 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 103 ms
79,056 KB
testcase_15 AC 109 ms
81,936 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**6+1)]
p = 2

while (p * p <= 10**5+1):
  if prime[p] ==1:
    P.append(p)
    for i in range(p * 2, 10**6+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