結果

問題 No.723 2つの数の和
ユーザー O2MTO2MT
提出日時 2020-08-21 17:59:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 235 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,876 KB
最終ジャッジ日時 2024-10-15 04:51:03
合計ジャッジ時間 2,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 117 ms
17,172 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 149 ms
18,852 KB
testcase_07 AC 71 ms
14,444 KB
testcase_08 AC 81 ms
15,116 KB
testcase_09 AC 140 ms
20,876 KB
testcase_10 RE -
testcase_11 AC 35 ms
11,648 KB
testcase_12 AC 84 ms
15,616 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 145 ms
12,620 KB
testcase_19 AC 171 ms
20,668 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 173 ms
20,532 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

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 A[i]+A[b] == X:
    br = bisect_right(A,X-A[i])
    ans += (br-b)
print(ans)
  
0