結果

問題 No.36 素数が嫌い!
ユーザー Yuta123456Yuta123456
提出日時 2020-05-21 03:24:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 88,336 KB
最終ジャッジ日時 2024-10-01 23:52:42
合計ジャッジ時間 30,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,253 ms
45,652 KB
testcase_01 AC 1,546 ms
69,968 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 39 ms
11,008 KB
testcase_06 AC 36 ms
11,008 KB
testcase_07 AC 41 ms
11,264 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 WA -
testcase_11 AC 1,073 ms
35,456 KB
testcase_12 AC 3,222 ms
87,136 KB
testcase_13 AC 2,238 ms
87,840 KB
testcase_14 AC 1,112 ms
57,700 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 996 ms
50,576 KB
testcase_25 AC 1,298 ms
49,684 KB
testcase_26 AC 1,718 ms
57,884 KB
testcase_27 AC 1,829 ms
76,048 KB
testcase_28 AC 1,620 ms
56,016 KB
testcase_29 AC 2,085 ms
85,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
factorization = [0 for i in range(int(n**0.5) + 1)]
for div in range(2,int(n**0.5)+1):
    while n % div == 0:
        factorization[div] += 1
        n = n // div
flag = False
for i in range(int(n**0.5) + 1):
    if factorization[i] >= 2:
        flag = True
if sum(factorization) >= 3 or flag:
    print("YES")
else:
    print("NO")
0