結果

問題 No.826 連絡網
ユーザー 👑 rin204rin204
提出日時 2022-03-25 04:36:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,400 KB
最終ジャッジ日時 2024-10-13 11:53:29
合計ジャッジ時間 3,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
66,176 KB
testcase_01 AC 73 ms
65,984 KB
testcase_02 AC 70 ms
66,304 KB
testcase_03 AC 70 ms
66,560 KB
testcase_04 AC 69 ms
66,688 KB
testcase_05 AC 70 ms
66,688 KB
testcase_06 AC 74 ms
66,560 KB
testcase_07 AC 72 ms
66,688 KB
testcase_08 AC 73 ms
66,540 KB
testcase_09 AC 71 ms
66,332 KB
testcase_10 AC 73 ms
66,304 KB
testcase_11 AC 72 ms
66,688 KB
testcase_12 AC 76 ms
69,368 KB
testcase_13 AC 76 ms
67,584 KB
testcase_14 AC 75 ms
68,608 KB
testcase_15 AC 73 ms
66,816 KB
testcase_16 AC 74 ms
67,840 KB
testcase_17 AC 74 ms
67,840 KB
testcase_18 AC 74 ms
67,712 KB
testcase_19 AC 78 ms
69,856 KB
testcase_20 AC 79 ms
69,760 KB
testcase_21 AC 70 ms
66,688 KB
testcase_22 AC 75 ms
67,712 KB
testcase_23 AC 73 ms
67,968 KB
testcase_24 AC 72 ms
67,200 KB
testcase_25 AC 76 ms
70,400 KB
testcase_26 AC 72 ms
67,320 KB
testcase_27 AC 76 ms
69,376 KB
testcase_28 AC 77 ms
68,864 KB
testcase_29 AC 74 ms
67,712 KB
testcase_30 AC 78 ms
70,400 KB
testcase_31 AC 74 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 1000100
isprime = [True] * N
isprime[0] = isprime[1] = False
for i in range(2, int(N ** 0.5 + 1)):
    if not isprime[i]:
        continue
    for j in range(i * i, N, i):
        isprime[j] = False

n, p = map(int, input().split())
for i in range(2, int(p ** 0.5 + 1)):
    if p % i == 0:
        p = i
        break
    
if 2 * p <= n:
    ans = n - sum(isprime[n // 2 + 1:n + 1]) - 1
    print(ans)
else:
    print(1)
0