結果

問題 No.36 素数が嫌い!
ユーザー human_cipherhuman_cipher
提出日時 2021-06-22 01:38:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 302 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-22 23:01:48
合計ジャッジ時間 25,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,329 ms
10,880 KB
testcase_01 AC 129 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 40 ms
10,880 KB
testcase_06 AC 46 ms
10,880 KB
testcase_07 AC 47 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 1,944 ms
10,752 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 47 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 259 ms
10,880 KB
testcase_20 AC 209 ms
10,880 KB
testcase_21 AC 759 ms
10,880 KB
testcase_22 AC 116 ms
10,880 KB
testcase_23 AC 66 ms
10,880 KB
testcase_24 AC 862 ms
10,880 KB
testcase_25 AC 1,017 ms
10,880 KB
testcase_26 AC 1,984 ms
10,880 KB
testcase_27 AC 129 ms
10,880 KB
testcase_28 AC 2,016 ms
10,752 KB
testcase_29 AC 69 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

n = int(input())

div = 2
fact = list()
while div < int(sqrt(n))+1 and n > 1:
    if n % div == 0:
        while n % div == 0:
            fact.append(div)
            n //= div
    div += 1
if n > 1:
    fact.append(n)

if len(fact) >= 3:
    print("YES")
else:
    print("NO")
0