結果

問題 No.36 素数が嫌い!
ユーザー Yuta123456Yuta123456
提出日時 2020-05-21 03:19:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 86,272 KB
最終ジャッジ日時 2024-10-01 23:51:37
合計ジャッジ時間 28,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,030 ms
45,696 KB
testcase_01 AC 1,515 ms
69,632 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 37 ms
10,880 KB
testcase_06 AC 37 ms
11,008 KB
testcase_07 AC 37 ms
11,008 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 36 ms
11,008 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 732 ms
35,328 KB
testcase_12 AC 2,193 ms
86,272 KB
testcase_13 WA -
testcase_14 AC 1,121 ms
57,600 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 865 ms
40,064 KB
testcase_20 AC 2,018 ms
85,888 KB
testcase_21 AC 1,659 ms
68,352 KB
testcase_22 AC 1,727 ms
70,272 KB
testcase_23 AC 1,047 ms
46,336 KB
testcase_24 AC 1,027 ms
50,560 KB
testcase_25 AC 1,150 ms
49,664 KB
testcase_26 AC 1,327 ms
56,704 KB
testcase_27 AC 1,887 ms
75,392 KB
testcase_28 AC 1,302 ms
55,680 KB
testcase_29 AC 2,085 ms
83,584 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
if sum(factorization) >= 2:
    print("YES")
else:
    print("NO")
0