結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,244 KB
testcase_01 AC 37 ms
52,580 KB
testcase_02 AC 40 ms
58,980 KB
testcase_03 WA -
testcase_04 AC 42 ms
60,876 KB
testcase_05 AC 41 ms
59,840 KB
testcase_06 AC 42 ms
60,992 KB
testcase_07 AC 40 ms
61,432 KB
testcase_08 AC 41 ms
60,592 KB
testcase_09 AC 42 ms
60,188 KB
testcase_10 AC 40 ms
59,028 KB
testcase_11 AC 44 ms
60,392 KB
testcase_12 AC 104 ms
81,284 KB
testcase_13 AC 67 ms
73,440 KB
testcase_14 AC 87 ms
79,776 KB
testcase_15 AC 46 ms
63,016 KB
testcase_16 AC 71 ms
76,820 KB
testcase_17 AC 65 ms
73,568 KB
testcase_18 AC 61 ms
70,512 KB
testcase_19 AC 113 ms
82,396 KB
testcase_20 AC 109 ms
81,940 KB
testcase_21 AC 43 ms
60,660 KB
testcase_22 AC 65 ms
75,064 KB
testcase_23 AC 75 ms
78,660 KB
testcase_24 AC 55 ms
67,844 KB
testcase_25 AC 122 ms
83,212 KB
testcase_26 AC 58 ms
69,968 KB
testcase_27 AC 102 ms
81,280 KB
testcase_28 AC 89 ms
79,996 KB
testcase_29 AC 67 ms
73,844 KB
testcase_30 AC 126 ms
83,180 KB
testcase_31 AC 73 ms
76,568 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:
    print(1)
else:
    print(count)
0