結果

問題 No.2751 429-like Number
ユーザー ntudantuda
提出日時 2024-05-12 20:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,709 ms / 4,000 ms
コード長 804 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 83,684 KB
最終ジャッジ日時 2024-12-20 09:15:18
合計ジャッジ時間 24,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
82,580 KB
testcase_01 AC 90 ms
82,696 KB
testcase_02 AC 87 ms
82,876 KB
testcase_03 AC 89 ms
82,800 KB
testcase_04 AC 87 ms
82,868 KB
testcase_05 AC 88 ms
82,840 KB
testcase_06 AC 94 ms
82,804 KB
testcase_07 AC 284 ms
83,540 KB
testcase_08 AC 171 ms
83,556 KB
testcase_09 AC 1,687 ms
83,528 KB
testcase_10 AC 1,709 ms
83,296 KB
testcase_11 AC 1,657 ms
83,404 KB
testcase_12 AC 1,136 ms
83,536 KB
testcase_13 AC 645 ms
83,436 KB
testcase_14 AC 1,321 ms
83,564 KB
testcase_15 AC 379 ms
83,544 KB
testcase_16 AC 813 ms
83,548 KB
testcase_17 AC 828 ms
83,524 KB
testcase_18 AC 1,141 ms
83,548 KB
testcase_19 AC 1,201 ms
83,436 KB
testcase_20 AC 1,249 ms
83,684 KB
testcase_21 AC 1,149 ms
83,428 KB
testcase_22 AC 1,176 ms
83,432 KB
testcase_23 AC 1,215 ms
83,540 KB
testcase_24 AC 1,214 ms
83,684 KB
testcase_25 AC 1,252 ms
83,532 KB
testcase_26 AC 1,145 ms
83,684 KB
testcase_27 AC 1,271 ms
83,544 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