結果

問題 No.826 連絡網
ユーザー roarisroaris
提出日時 2019-09-20 00:01:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-07-21 18:34:21
合計ジャッジ時間 3,411 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 46 ms
58,112 KB
testcase_04 AC 46 ms
58,496 KB
testcase_05 AC 46 ms
58,624 KB
testcase_06 AC 45 ms
58,624 KB
testcase_07 AC 50 ms
58,368 KB
testcase_08 AC 45 ms
58,368 KB
testcase_09 AC 45 ms
58,624 KB
testcase_10 AC 50 ms
57,984 KB
testcase_11 AC 46 ms
58,368 KB
testcase_12 WA -
testcase_13 AC 56 ms
62,592 KB
testcase_14 AC 65 ms
66,048 KB
testcase_15 AC 48 ms
59,264 KB
testcase_16 AC 60 ms
63,744 KB
testcase_17 AC 56 ms
62,720 KB
testcase_18 AC 53 ms
61,312 KB
testcase_19 AC 80 ms
70,400 KB
testcase_20 AC 80 ms
70,016 KB
testcase_21 AC 45 ms
58,752 KB
testcase_22 AC 57 ms
62,848 KB
testcase_23 AC 65 ms
63,872 KB
testcase_24 AC 53 ms
60,800 KB
testcase_25 AC 91 ms
72,576 KB
testcase_26 AC 54 ms
61,440 KB
testcase_27 AC 74 ms
68,864 KB
testcase_28 AC 69 ms
66,688 KB
testcase_29 AC 62 ms
62,336 KB
testcase_30 AC 91 ms
71,936 KB
testcase_31 AC 63 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def era(n):
    is_prime = [True] * (n+1)
    is_prime[0] = False
    is_prime[1] = False
    
    for i in range(2, int(n**0.5)+1):
        if not is_prime[i]:
            continue
        for j in range(2*i, n+1, i):
            is_prime[j] = False

    return [i for i in range(n) if is_prime[i]]

N, P = map(int, input().split())
primes = era(N)

if P == 1 or (P >= N//2+1 and P in primes):
    print(1)
else:
    print(N - 1 - (len(primes)-bisect_left(primes, N//2+1)))
0