結果

問題 No.826 連絡網
ユーザー titiatitia
提出日時 2019-05-03 21:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-11-24 02:16:49
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 48 ms
58,880 KB
testcase_04 AC 49 ms
58,880 KB
testcase_05 AC 49 ms
58,624 KB
testcase_06 AC 48 ms
58,368 KB
testcase_07 AC 49 ms
58,368 KB
testcase_08 AC 49 ms
58,496 KB
testcase_09 AC 49 ms
58,752 KB
testcase_10 AC 50 ms
58,368 KB
testcase_11 AC 48 ms
58,880 KB
testcase_12 AC 70 ms
69,248 KB
testcase_13 AC 58 ms
62,976 KB
testcase_14 AC 64 ms
65,792 KB
testcase_15 AC 50 ms
59,264 KB
testcase_16 AC 59 ms
63,744 KB
testcase_17 AC 58 ms
63,104 KB
testcase_18 AC 56 ms
62,208 KB
testcase_19 AC 74 ms
70,656 KB
testcase_20 AC 73 ms
70,272 KB
testcase_21 AC 50 ms
59,008 KB
testcase_22 AC 58 ms
63,104 KB
testcase_23 AC 60 ms
64,384 KB
testcase_24 AC 54 ms
61,056 KB
testcase_25 AC 78 ms
72,320 KB
testcase_26 AC 54 ms
61,952 KB
testcase_27 AC 71 ms
68,864 KB
testcase_28 AC 66 ms
67,200 KB
testcase_29 AC 58 ms
62,848 KB
testcase_30 AC 79 ms
72,448 KB
testcase_31 AC 59 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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

if P==1:
    print(1)
    sys.exit()

import math 
L=math.ceil(math.sqrt(P))

if P>N//2:
    for i in range(2,L+1):
        if P%i==0:
            break

    else:
        print(1)
        sys.exit()



L=math.floor(math.sqrt(N))#平方根を求める

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

Primes=[Primelist[j] for j in range(N+1) if Primelist[j]!=0]

import bisect
ANS=bisect.bisect_right(Primes,N//2)
print(N-(len(Primes)-ANS+1))
0