結果
問題 | No.2751 429-like Number |
ユーザー | Butterflv |
提出日時 | 2024-05-13 00:20:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 279 bytes |
コンパイル時間 | 400 ms |
コンパイル使用メモリ | 82,356 KB |
実行使用メモリ | 77,444 KB |
最終ジャッジ日時 | 2024-05-13 00:20:34 |
合計ジャッジ時間 | 7,062 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
53,012 KB |
testcase_01 | AC | 34 ms
52,128 KB |
testcase_02 | AC | 35 ms
54,560 KB |
testcase_03 | AC | 34 ms
53,612 KB |
testcase_04 | AC | 38 ms
57,844 KB |
testcase_05 | AC | 39 ms
57,640 KB |
testcase_06 | AC | 44 ms
59,340 KB |
testcase_07 | AC | 127 ms
77,380 KB |
testcase_08 | AC | 126 ms
77,444 KB |
testcase_09 | AC | 146 ms
76,688 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
import math Q=int(input()) def isOk(x): count=0 for i in range(2, math.floor(math.sqrt(x))+9): while x%i==0: x//=i 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()))])