結果

問題 No.36 素数が嫌い!
ユーザー nohakai3nohakai3
提出日時 2022-10-19 15:06:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 59,500 KB
最終ジャッジ日時 2024-06-29 17:39:43
合計ジャッジ時間 2,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,892 KB
testcase_01 AC 35 ms
52,264 KB
testcase_02 AC 32 ms
52,348 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 33 ms
59,388 KB
testcase_08 AC 35 ms
52,740 KB
testcase_09 AC 34 ms
53,472 KB
testcase_10 AC 33 ms
53,108 KB
testcase_11 AC 52 ms
58,484 KB
testcase_12 AC 93 ms
57,992 KB
testcase_13 WA -
testcase_14 AC 34 ms
58,560 KB
testcase_15 AC 34 ms
52,260 KB
testcase_16 AC 34 ms
53,668 KB
testcase_17 AC 33 ms
51,752 KB
testcase_18 AC 34 ms
51,940 KB
testcase_19 AC 33 ms
52,252 KB
testcase_20 AC 34 ms
52,664 KB
testcase_21 AC 36 ms
52,404 KB
testcase_22 AC 34 ms
53,068 KB
testcase_23 AC 36 ms
53,196 KB
testcase_24 AC 34 ms
52,460 KB
testcase_25 AC 34 ms
53,224 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n==1:
    print("NO")
    exit()

import math

def is_prime(num):
    if num < 2:
        return False
    elif num == 2:
        return True
    elif num % 2 == 0:
        return False
    
    sqrtNum = math.floor(math.sqrt(num))
    for i in range(3, sqrtNum + 1, 2):
        if num % i == 0:
            return False
    
    return True

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