結果

問題 No.723 2つの数の和
ユーザー bellangeldindon
提出日時 2019-05-20 10:53:03
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 15,520 KB
最終ジャッジ日時 2024-09-17 06:38:33
合計ジャッジ時間 5,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

def binarysrch(lst, n, left, right):
	md = (left+right)/2
	if lst[md] == n: return md
	if md == left: return -1
	if lst[md] < n: return binarysrch(lst, n, md+1, right)
	return binarysrch(lst, n, left, md-1)

N, X = map(int, raw_input().split())
a = map(int, raw_input().split())
a.sort()
number = []
count = []
tmp = -1
for i in range(0, N):
	if a[i] == tmp: count[-1] += 1
	else:
		number.append(a[i])
		count.append(1)
		tmp = a[i]
sum = 0
for i in range(0, len(number)):
	srch = binarysrch(number, X-a[i], 0, len(number)-1)
	if srch != -1:
		sum += count[i]*count[srch]
print sum
0