結果

問題 No.826 連絡網
ユーザー ttrttr
提出日時 2020-02-26 16:55:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 872 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,212 KB
最終ジャッジ日時 2024-10-13 15:25:50
合計ジャッジ時間 9,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 33 ms
10,624 KB
testcase_07 AC 35 ms
10,624 KB
testcase_08 AC 32 ms
10,496 KB
testcase_09 AC 36 ms
10,752 KB
testcase_10 AC 34 ms
10,752 KB
testcase_11 AC 33 ms
10,880 KB
testcase_12 AC 632 ms
21,784 KB
testcase_13 AC 267 ms
15,104 KB
testcase_14 AC 455 ms
18,880 KB
testcase_15 AC 74 ms
11,520 KB
testcase_16 AC 314 ms
16,216 KB
testcase_17 AC 250 ms
14,976 KB
testcase_18 AC 208 ms
14,080 KB
testcase_19 AC 724 ms
23,636 KB
testcase_20 AC 761 ms
23,300 KB
testcase_21 AC 38 ms
10,624 KB
testcase_22 AC 251 ms
14,976 KB
testcase_23 AC 326 ms
16,492 KB
testcase_24 AC 153 ms
13,056 KB
testcase_25 AC 870 ms
26,204 KB
testcase_26 AC 189 ms
13,568 KB
testcase_27 AC 658 ms
22,176 KB
testcase_28 AC 509 ms
19,508 KB
testcase_29 AC 242 ms
15,104 KB
testcase_30 AC 872 ms
26,212 KB
testcase_31 AC 306 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

memo = [-1]*(N+1)
for i in range(2, N+1):
    if memo[i] > -1:
        continue
    memo[i] = 1
    j = 2*i
    while j <= N:
        memo[j] = 0
        j += i

if P > 1:
    L = [0]*(N+1)
    n = 2
    num = P
    while n <= P**0.5:
        if P%n == 0:
            num = n
            break
        n += 1
    if num*2 <= N:
        ans = N//2-1
        for i in range(N//2+1, N+1):
            if memo[i] == 0:
                ans += 1
    else:
        ans = 1

print(ans)
0