結果

問題 No.826 連絡網
ユーザー kohei2019kohei2019
提出日時 2022-04-20 21:56:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 81,348 KB
最終ジャッジ日時 2024-06-12 00:03:24
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,132 KB
testcase_01 AC 41 ms
52,744 KB
testcase_02 AC 38 ms
52,948 KB
testcase_03 AC 48 ms
60,888 KB
testcase_04 AC 46 ms
61,920 KB
testcase_05 AC 45 ms
60,364 KB
testcase_06 AC 46 ms
61,708 KB
testcase_07 AC 49 ms
61,560 KB
testcase_08 AC 46 ms
60,716 KB
testcase_09 AC 46 ms
61,024 KB
testcase_10 AC 43 ms
58,980 KB
testcase_11 AC 46 ms
61,708 KB
testcase_12 AC 72 ms
75,568 KB
testcase_13 AC 56 ms
66,420 KB
testcase_14 AC 66 ms
72,740 KB
testcase_15 AC 47 ms
62,632 KB
testcase_16 AC 58 ms
68,164 KB
testcase_17 AC 56 ms
66,688 KB
testcase_18 AC 55 ms
65,104 KB
testcase_19 AC 79 ms
76,368 KB
testcase_20 AC 78 ms
77,424 KB
testcase_21 AC 47 ms
61,340 KB
testcase_22 AC 56 ms
67,132 KB
testcase_23 AC 61 ms
69,760 KB
testcase_24 AC 50 ms
64,164 KB
testcase_25 AC 83 ms
80,160 KB
testcase_26 AC 53 ms
64,432 KB
testcase_27 AC 74 ms
75,328 KB
testcase_28 AC 67 ms
71,792 KB
testcase_29 AC 56 ms
66,464 KB
testcase_30 AC 85 ms
81,348 KB
testcase_31 AC 58 ms
67,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primeset(N): #N以下の素数をsetで求める.エラトステネスの篩O(√Nlog(N))
    lsx = [1]*(N+1)
    for i in range(2,int(-(-N**0.5//1))+1):
        if lsx[i] == 1:
            for j in range(i,N//i+1):
                lsx[j*i] = 0
    setprime = set()
    for i in range(2,N+1):
        if lsx[i] == 1:
            setprime.add(i)
    return setprime
N,P = map(int,input().split())
if N <= 3:
    print(1)
    exit()
al = N//2
lsp = list(primeset(al))
lsp.sort()
ls = [0]*(N+1)
for p in lsp:
    st = 1
    while st*p <= N:
        ls[st*p] = 1
        st += 1
if ls[P] == 0:
    print(1)
else:
    print(sum(ls))
0