結果

問題 No.36 素数が嫌い!
ユーザー titiatitia
提出日時 2021-11-28 02:24:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 141,088 KB
最終ジャッジ日時 2024-06-30 17:20:44
合計ジャッジ時間 17,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 412 ms
138,596 KB
testcase_01 WA -
testcase_02 AC 570 ms
141,040 KB
testcase_03 AC 568 ms
140,420 KB
testcase_04 AC 580 ms
140,104 KB
testcase_05 AC 573 ms
139,232 KB
testcase_06 AC 578 ms
140,380 KB
testcase_07 AC 579 ms
139,292 KB
testcase_08 AC 404 ms
138,748 KB
testcase_09 AC 412 ms
138,860 KB
testcase_10 AC 414 ms
138,724 KB
testcase_11 AC 570 ms
140,984 KB
testcase_12 AC 578 ms
139,848 KB
testcase_13 AC 575 ms
139,472 KB
testcase_14 WA -
testcase_15 AC 408 ms
138,180 KB
testcase_16 AC 560 ms
139,716 KB
testcase_17 AC 561 ms
140,108 KB
testcase_18 AC 403 ms
139,428 KB
testcase_19 AC 419 ms
139,124 KB
testcase_20 AC 424 ms
140,688 KB
testcase_21 AC 409 ms
139,824 KB
testcase_22 AC 412 ms
140,700 KB
testcase_23 AC 410 ms
140,684 KB
testcase_24 WA -
testcase_25 AC 414 ms
139,468 KB
testcase_26 AC 572 ms
140,444 KB
testcase_27 AC 576 ms
140,484 KB
testcase_28 AC 565 ms
140,576 KB
testcase_29 AC 575 ms
141,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
x=10**7+5
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

N=int(input())
for i in range(2,10**7+5):
    if i!=N and Primelist[i]==0 and N%i==0:
        print("YES")
        break
else:
    print("NO")
0