結果

問題 No.723 2つの数の和
ユーザー FukumotoFukumoto
提出日時 2020-06-08 23:03:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,744 KB
最終ジャッジ日時 2024-06-08 02:26:18
合計ジャッジ時間 3,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 134 ms
17,168 KB
testcase_04 AC 170 ms
19,736 KB
testcase_05 AC 161 ms
18,960 KB
testcase_06 AC 177 ms
18,976 KB
testcase_07 AC 89 ms
14,444 KB
testcase_08 AC 94 ms
15,112 KB
testcase_09 AC 173 ms
20,744 KB
testcase_10 AC 84 ms
14,284 KB
testcase_11 AC 38 ms
11,648 KB
testcase_12 AC 102 ms
15,744 KB
testcase_13 AC 188 ms
20,544 KB
testcase_14 AC 61 ms
12,800 KB
testcase_15 AC 87 ms
14,540 KB
testcase_16 AC 117 ms
16,548 KB
testcase_17 AC 146 ms
18,648 KB
testcase_18 AC 133 ms
12,492 KB
testcase_19 AC 158 ms
20,732 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 167 ms
20,660 KB
testcase_24 AC 72 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, X = list(map(int, input().split()))
A = list(map(int, input().split()))
ans = 0

A = sorted(A)
for a in A:
    l = bisect_left(A, X-a)
    r = bisect_right(A, X-a)
 
    ans += r-l
print(ans)
0