結果

問題 No.36 素数が嫌い!
ユーザー magurogumamaguroguma
提出日時 2017-08-08 17:51:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-12 00:11:47
合計ジャッジ時間 9,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 137 ms
10,368 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 29 ms
10,240 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 46 ms
10,368 KB
testcase_06 AC 48 ms
10,496 KB
testcase_07 AC 49 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,240 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 1,989 ms
10,496 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

"""
素数で割り切れるものもアウトの可能性があることに注意
(6の約数は1,2,3,6で2,3が素数なのでアウト)

合成数は必要条件,約数に1と自身を除いた合成数を1つでも持たないといけない
→なんでもいいからN^0.5以下の約数を複数持っていれば,それらの積がイエスの条件となる

Nは上限が10の14乗でN^0.5は1千万
"""

N = int(input())

i = 2
divisors = []
while i <= pow(N, 0.5):
    remainder = N % i
    if remainder == 0:
        divisors.append(i)
    if len(divisors) == 2:
        print('YES')
        exit()
    i += 1
print('NO')
0