結果

問題 No.826 連絡網
ユーザー O2MTO2MT
提出日時 2020-12-12 23:30:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 83,448 KB
最終ジャッジ日時 2024-09-19 22:33:34
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,440 KB
testcase_01 AC 33 ms
52,428 KB
testcase_02 AC 37 ms
58,380 KB
testcase_03 AC 42 ms
60,664 KB
testcase_04 AC 44 ms
60,588 KB
testcase_05 AC 45 ms
60,392 KB
testcase_06 AC 42 ms
61,344 KB
testcase_07 AC 41 ms
61,680 KB
testcase_08 AC 42 ms
60,080 KB
testcase_09 AC 42 ms
61,088 KB
testcase_10 AC 39 ms
59,416 KB
testcase_11 AC 42 ms
61,316 KB
testcase_12 AC 103 ms
81,440 KB
testcase_13 AC 64 ms
73,800 KB
testcase_14 AC 86 ms
79,660 KB
testcase_15 AC 46 ms
63,624 KB
testcase_16 AC 74 ms
76,640 KB
testcase_17 AC 66 ms
73,324 KB
testcase_18 AC 61 ms
70,516 KB
testcase_19 AC 113 ms
82,124 KB
testcase_20 AC 114 ms
81,960 KB
testcase_21 AC 42 ms
60,924 KB
testcase_22 AC 66 ms
74,476 KB
testcase_23 AC 78 ms
78,532 KB
testcase_24 AC 55 ms
68,640 KB
testcase_25 AC 127 ms
83,200 KB
testcase_26 AC 59 ms
69,492 KB
testcase_27 AC 107 ms
81,396 KB
testcase_28 AC 92 ms
79,952 KB
testcase_29 AC 63 ms
73,792 KB
testcase_30 AC 124 ms
83,448 KB
testcase_31 AC 70 ms
76,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P = map(int,input().split())
l = [0]*(N+1)
for i in range(2,N+1):
    for j in range(i,N+1,i):
        l[j] += 1
count = N-1
for n in range(N//2+1,N+1):
    if l[n] == 1:
        count -= 1
if l[P] == 1 and P > N//2:
    print(1)
else:
    print(count)
0