結果

問題 No.36 素数が嫌い!
ユーザー syunsukesyunsuke
提出日時 2019-07-27 00:19:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,436 KB
最終ジャッジ日時 2024-07-02 10:12:23
合計ジャッジ時間 11,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
47,612 KB
testcase_01 AC 1,855 ms
70,104 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 44 ms
11,136 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 31 ms
11,264 KB
testcase_11 AC 2,000 ms
35,360 KB
testcase_12 TLE -
testcase_13 -- -
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 #

N=int(input())
import math
X=math.ceil(pow(N,0.5))
L=[1 for i in range(X+1)]
if N==2:
    print("NO")
    exit()
for i in range(2,X+1):
    if L[i]==1:
        if N%i==0:
            print("YES")
            exit()
        for j in range(i*2,X,i):
            #print(i,j)
            L[j]=0
print("NO")
0