結果

問題 No.723 2つの数の和
ユーザー daleksprinterdaleksprinter
提出日時 2018-08-09 08:22:53
言語 Python2
(2.7.18)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 14,968 KB
最終ジャッジ日時 2024-09-23 04:17:53
合計ジャッジ時間 4,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 157 ms
12,320 KB
testcase_04 AC 208 ms
14,368 KB
testcase_05 AC 186 ms
13,516 KB
testcase_06 AC 201 ms
14,016 KB
testcase_07 AC 91 ms
9,588 KB
testcase_08 AC 100 ms
10,008 KB
testcase_09 AC 211 ms
14,496 KB
testcase_10 AC 85 ms
9,600 KB
testcase_11 AC 26 ms
6,944 KB
testcase_12 AC 115 ms
10,544 KB
testcase_13 AC 215 ms
14,820 KB
testcase_14 AC 54 ms
8,192 KB
testcase_15 AC 91 ms
9,808 KB
testcase_16 AC 133 ms
11,612 KB
testcase_17 AC 177 ms
13,348 KB
testcase_18 AC 170 ms
7,936 KB
testcase_19 AC 180 ms
14,748 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 11 ms
6,944 KB
testcase_22 AC 10 ms
6,944 KB
testcase_23 AC 186 ms
14,968 KB
testcase_24 AC 64 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n,x = map(int,raw_input().split())

arr = map(int,raw_input().split())

arr.sort()
ans = 0

for i in arr:
	ans += bisect.bisect_right(arr,x-i) - bisect.bisect_left(arr,x-i) 

print ans
0