結果

問題 No.826 連絡網
ユーザー titiatitia
提出日時 2019-05-03 21:48:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,816 KB
最終ジャッジ日時 2024-11-24 02:20:47
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 31 ms
11,136 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
11,264 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 32 ms
11,136 KB
testcase_12 AC 345 ms
39,680 KB
testcase_13 AC 157 ms
22,400 KB
testcase_14 AC 256 ms
32,512 KB
testcase_15 AC 53 ms
13,440 KB
testcase_16 AC 180 ms
25,472 KB
testcase_17 AC 144 ms
22,400 KB
testcase_18 AC 119 ms
19,840 KB
testcase_19 AC 391 ms
44,288 KB
testcase_20 AC 423 ms
43,648 KB
testcase_21 AC 33 ms
11,264 KB
testcase_22 AC 142 ms
22,528 KB
testcase_23 AC 178 ms
25,856 KB
testcase_24 AC 93 ms
17,408 KB
testcase_25 AC 537 ms
50,560 KB
testcase_26 AC 119 ms
18,688 KB
testcase_27 AC 364 ms
40,704 KB
testcase_28 AC 271 ms
33,792 KB
testcase_29 AC 154 ms
22,400 KB
testcase_30 AC 466 ms
50,816 KB
testcase_31 AC 167 ms
24,704 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