結果

問題 No.826 連絡網
ユーザー stngstng
提出日時 2022-07-09 17:51:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-06-10 00:57:27
合計ジャッジ時間 3,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 40 ms
59,264 KB
testcase_04 AC 42 ms
60,544 KB
testcase_05 AC 41 ms
59,520 KB
testcase_06 AC 41 ms
59,264 KB
testcase_07 AC 41 ms
59,136 KB
testcase_08 AC 41 ms
59,276 KB
testcase_09 AC 42 ms
59,904 KB
testcase_10 AC 39 ms
58,880 KB
testcase_11 AC 42 ms
59,264 KB
testcase_12 AC 76 ms
75,008 KB
testcase_13 AC 54 ms
66,560 KB
testcase_14 AC 63 ms
71,424 KB
testcase_15 AC 45 ms
62,208 KB
testcase_16 AC 57 ms
68,096 KB
testcase_17 AC 54 ms
66,816 KB
testcase_18 AC 54 ms
65,664 KB
testcase_19 AC 78 ms
76,928 KB
testcase_20 AC 75 ms
76,884 KB
testcase_21 AC 44 ms
60,268 KB
testcase_22 AC 55 ms
66,816 KB
testcase_23 AC 59 ms
68,296 KB
testcase_24 AC 50 ms
64,256 KB
testcase_25 AC 86 ms
80,000 KB
testcase_26 AC 53 ms
65,024 KB
testcase_27 AC 76 ms
75,648 KB
testcase_28 AC 71 ms
72,704 KB
testcase_29 AC 55 ms
66,816 KB
testcase_30 AC 86 ms
80,128 KB
testcase_31 AC 61 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def sieve_of_eratosthenes(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False

    return prime

n,p = map(int,input().split())
prm = sieve_of_eratosthenes(n)
pm = []
for i in range(n+1):
    if prm[i] == True:
        pm.append(i)

mr = set()

for i in range(len(pm)):
    if pm[i]*2 > n:
        #idx = i
        mr.add(pm[i])

#print(idx,pm[idx],len(pm)-idx)
if p in mr:
    print(1)
else:
    print(n-len(mr)-1)
0