結果

問題 No.723 2つの数の和
ユーザー O2MTO2MT
提出日時 2020-08-21 18:01:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,868 KB
最終ジャッジ日時 2024-10-15 04:51:36
合計ジャッジ時間 3,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 120 ms
17,176 KB
testcase_04 AC 159 ms
20,000 KB
testcase_05 AC 128 ms
18,848 KB
testcase_06 AC 157 ms
19,116 KB
testcase_07 AC 70 ms
14,328 KB
testcase_08 AC 82 ms
14,996 KB
testcase_09 AC 143 ms
20,764 KB
testcase_10 AC 74 ms
14,392 KB
testcase_11 AC 37 ms
11,520 KB
testcase_12 AC 85 ms
15,884 KB
testcase_13 AC 127 ms
20,676 KB
testcase_14 AC 49 ms
13,056 KB
testcase_15 AC 69 ms
14,424 KB
testcase_16 AC 88 ms
16,684 KB
testcase_17 AC 111 ms
18,788 KB
testcase_18 AC 156 ms
12,632 KB
testcase_19 AC 179 ms
20,868 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 184 ms
20,672 KB
testcase_24 AC 56 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N,X = map(int,input().split())
A = list(map(int,input().split()))
A.sort()
ans = 0
for i in range(N):
  b = bisect_left(A,X-A[i])
  if b >= N:
    continue
  if A[i]+A[b] == X:
    br = bisect_right(A,X-A[i])
    ans += (br-b)
print(ans)
  
0