結果
問題 | No.2751 429-like Number |
ユーザー | mottchan |
提出日時 | 2024-05-10 22:23:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 702 bytes |
コンパイル時間 | 133 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-10 22:24:03 |
合計ジャッジ時間 | 43,050 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1,677 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2,149 ms
10,752 KB |
testcase_10 | AC | 2,231 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1,959 ms
10,752 KB |
testcase_14 | AC | 2,115 ms
10,752 KB |
testcase_15 | AC | 2,253 ms
10,752 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 | - |
ソースコード
def get_prime(n): sieve = [True] * (n + 1) i = 2 while i * i <= n: if sieve[i]: for j in range(i * i, n + 1, i): sieve[j] = False i += 1 return [i for i in range(2, n + 1) if sieve[i]] l = get_prime(4000) # print(l) q = int(input()) for _ in range(q): n = int(input()) if n==1: print('No') continue cnt=0 for i in l: if n%i == 0: n = n//i cnt+=1 for i in l: if n%i == 0: n = n//i cnt+=1 for i in l: if n%i == 0: n = n//i cnt+=1 if n==1 and cnt==3: print('Yes') else: print('No')