結果

問題 No.36 素数が嫌い!
ユーザー szkhtsszkhts
提出日時 2023-04-02 08:07:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 11,732 KB
実行使用メモリ 10,168 KB
最終ジャッジ日時 2023-10-25 00:31:29
合計ジャッジ時間 4,222 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import math

n = int(input())

def is_prime(n):
    if n <= 1:
        return False

    for i in range(2, int(math.sqrt(n)) + 1):
        if n % i == 0:
            return False

    return True

if is_prime(n):
    print("NO")
else:
    print("YES")
0