結果

問題 No.2751 429-like Number
ユーザー ntudantuda
提出日時 2024-05-12 20:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,549 ms / 4,000 ms
コード長 804 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 84,056 KB
最終ジャッジ日時 2024-05-12 20:48:43
合計ジャッジ時間 22,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
83,000 KB
testcase_01 AC 78 ms
83,100 KB
testcase_02 AC 79 ms
83,048 KB
testcase_03 AC 78 ms
82,584 KB
testcase_04 AC 81 ms
83,124 KB
testcase_05 AC 81 ms
82,756 KB
testcase_06 AC 82 ms
82,708 KB
testcase_07 AC 255 ms
83,552 KB
testcase_08 AC 156 ms
83,788 KB
testcase_09 AC 1,549 ms
83,160 KB
testcase_10 AC 1,549 ms
83,560 KB
testcase_11 AC 1,525 ms
83,284 KB
testcase_12 AC 1,049 ms
83,792 KB
testcase_13 AC 573 ms
83,544 KB
testcase_14 AC 1,204 ms
83,288 KB
testcase_15 AC 371 ms
83,428 KB
testcase_16 AC 758 ms
84,056 KB
testcase_17 AC 769 ms
83,544 KB
testcase_18 AC 1,046 ms
83,820 KB
testcase_19 AC 1,085 ms
83,804 KB
testcase_20 AC 1,132 ms
83,792 KB
testcase_21 AC 1,021 ms
83,424 KB
testcase_22 AC 1,078 ms
83,692 KB
testcase_23 AC 1,122 ms
83,568 KB
testcase_24 AC 1,143 ms
83,576 KB
testcase_25 AC 1,154 ms
83,292 KB
testcase_26 AC 1,019 ms
83,940 KB
testcase_27 AC 1,155 ms
83,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    if N == 2:
        return []
    max = int(N ** 0.5)
    seachList = [i for i in range(2, N + 1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

PL = seachPrimeNum(10 ** 5)

for _ in range(int(input())):
    a = int(input())
    cnt = 0
    j = False
    for p in PL:
        while cnt < 3 and a % p == 0:
            a //= p
            cnt += 1
        if a == 1:
            if cnt == 3:
                j = True
                break
            else:
                break
    else:
        if cnt == 2:
            j = True

    if j == True:
        print("Yes")
    else:
        print("No")
0