結果

問題 No.36 素数が嫌い!
ユーザー nbisconbisco
提出日時 2016-04-17 22:00:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-15 02:18:15
合計ジャッジ時間 1,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 WA -
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 27 ms
10,880 KB
testcase_21 AC 27 ms
10,880 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 AC 27 ms
11,008 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#fileencoding: utf-8

from math import sqrt

def isprime(n):
    for i in range(3,2,int(sqrt(n))):
        if n % i == 0:
            return False
    return True

N = int(input())
if N == 1:
    print("NO")
else:
    if N % 2 == 0:
        print("YES")
    elif isprime(N):
        print("YES")
    else:
        print("NO")
0