結果

問題 No.2751 429-like Number
ユーザー ButterflvButterflv
提出日時 2024-05-13 00:25:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,612 ms / 4,000 ms
コード長 524 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 78,452 KB
最終ジャッジ日時 2024-05-13 00:26:05
合計ジャッジ時間 18,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
64,292 KB
testcase_01 AC 50 ms
64,720 KB
testcase_02 AC 49 ms
63,224 KB
testcase_03 AC 52 ms
64,108 KB
testcase_04 AC 51 ms
65,512 KB
testcase_05 AC 50 ms
64,032 KB
testcase_06 AC 53 ms
64,828 KB
testcase_07 AC 252 ms
77,872 KB
testcase_08 AC 292 ms
78,284 KB
testcase_09 AC 291 ms
78,100 KB
testcase_10 AC 1,610 ms
78,136 KB
testcase_11 AC 1,612 ms
78,100 KB
testcase_12 AC 990 ms
78,340 KB
testcase_13 AC 603 ms
77,620 KB
testcase_14 AC 911 ms
77,728 KB
testcase_15 AC 118 ms
77,900 KB
testcase_16 AC 614 ms
78,264 KB
testcase_17 AC 775 ms
77,916 KB
testcase_18 AC 874 ms
78,116 KB
testcase_19 AC 888 ms
78,400 KB
testcase_20 AC 853 ms
77,716 KB
testcase_21 AC 853 ms
77,640 KB
testcase_22 AC 882 ms
78,188 KB
testcase_23 AC 848 ms
78,080 KB
testcase_24 AC 874 ms
78,168 KB
testcase_25 AC 885 ms
78,452 KB
testcase_26 AC 856 ms
78,228 KB
testcase_27 AC 875 ms
78,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
ps=[True]*(10**5)
ps[0], ps[1]=False, False
for i in range(2, len(ps)):
  j=2
  if ps[i]==False: continue
  while i*j<len(ps):
    ps[i*j]=False
    j+=1
p=[]
for i in range(len(ps)):
  if ps[i]:
    p.append(i)
Q=int(input())
def isOk(x):
  count=0
  kijun=math.floor(math.sqrt(x))+9
  for elm in p:
    if elm>kijun: continue
    while x%elm==0:
      x//=elm
      count+=1
      if count>3: return 0
  if x!=1: count+=1
  return [0, 1][count==3]
for _ in range(Q):
  print(["No", "Yes"][isOk(int(input()))])
0