結果
問題 | No.2751 429-like Number |
ユーザー | titia |
提出日時 | 2024-05-10 23:25:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,568 ms / 4,000 ms |
コード長 | 712 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 77,792 KB |
最終ジャッジ日時 | 2024-05-10 23:26:18 |
合計ジャッジ時間 | 19,954 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
60,672 KB |
testcase_01 | AC | 42 ms
61,552 KB |
testcase_02 | AC | 41 ms
60,444 KB |
testcase_03 | AC | 42 ms
60,436 KB |
testcase_04 | AC | 42 ms
62,020 KB |
testcase_05 | AC | 42 ms
62,544 KB |
testcase_06 | AC | 43 ms
61,524 KB |
testcase_07 | AC | 100 ms
77,276 KB |
testcase_08 | AC | 97 ms
71,744 KB |
testcase_09 | AC | 1,568 ms
70,440 KB |
testcase_10 | AC | 1,538 ms
69,588 KB |
testcase_11 | AC | 1,494 ms
75,020 KB |
testcase_12 | AC | 950 ms
77,792 KB |
testcase_13 | AC | 556 ms
73,188 KB |
testcase_14 | AC | 1,137 ms
71,476 KB |
testcase_15 | AC | 52 ms
69,032 KB |
testcase_16 | AC | 657 ms
77,240 KB |
testcase_17 | AC | 652 ms
77,716 KB |
testcase_18 | AC | 941 ms
77,504 KB |
testcase_19 | AC | 968 ms
77,600 KB |
testcase_20 | AC | 926 ms
77,496 KB |
testcase_21 | AC | 915 ms
77,476 KB |
testcase_22 | AC | 927 ms
77,696 KB |
testcase_23 | AC | 939 ms
77,752 KB |
testcase_24 | AC | 941 ms
77,392 KB |
testcase_25 | AC | 909 ms
77,692 KB |
testcase_26 | AC | 958 ms
77,496 KB |
testcase_27 | AC | 933 ms
77,744 KB |
ソースコード
import sys input = sys.stdin.readline x=100010 import math L=math.floor(math.sqrt(x)) # 平方根を求める Primelist=[i for i in range(x+1)] Primelist[1]=0 # 1は素数でないので0にする. for i in Primelist: if i>L: break if i==0: continue for j in range(2*i,x+1,i): Primelist[j]=0 Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0] Q=int(input()) for tests in range(Q): A=int(input()) ANS=0 for p in Primes: while A%p==0: ANS+=1 A//=p if A==1: break if ANS>3: break if A!=1: ANS+=1 if ANS==3: print("Yes") else: print("No")