結果

問題 No.723 2つの数の和
ユーザー Konton7Konton7
提出日時 2019-05-23 16:07:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-09-17 09:46:18
合計ジャッジ時間 3,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 154 ms
17,304 KB
testcase_04 AC 206 ms
19,992 KB
testcase_05 AC 186 ms
19,092 KB
testcase_06 AC 191 ms
19,108 KB
testcase_07 AC 98 ms
14,580 KB
testcase_08 AC 110 ms
15,120 KB
testcase_09 AC 199 ms
20,356 KB
testcase_10 AC 95 ms
14,384 KB
testcase_11 AC 42 ms
11,776 KB
testcase_12 AC 120 ms
15,872 KB
testcase_13 AC 208 ms
20,676 KB
testcase_14 AC 69 ms
13,056 KB
testcase_15 AC 99 ms
14,804 KB
testcase_16 AC 139 ms
16,812 KB
testcase_17 AC 174 ms
18,780 KB
testcase_18 AC 151 ms
12,624 KB
testcase_19 AC 181 ms
20,992 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 187 ms
20,664 KB
testcase_24 AC 77 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect



n, x = [ int(v) for v in input().split() ]

num = sorted([ int(v) for v in input().split() ])

s = 0
for i in range(n):
	a = (bisect.bisect_left(num,x-num[i]))
	b = (bisect.bisect_right(num,x-num[i]))
	s += b - a
print(s)
0