結果

問題 No.723 2つの数の和
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-17 09:39:48
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,992 KB
最終ジャッジ日時 2024-09-17 05:49:48
合計ジャッジ時間 5,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 328 ms
14,932 KB
testcase_14 AC 98 ms
8,280 KB
testcase_15 AC 160 ms
9,796 KB
testcase_16 AC 228 ms
11,596 KB
testcase_17 AC 282 ms
13,464 KB
testcase_18 AC 63 ms
10,236 KB
testcase_19 AC 71 ms
14,992 KB
testcase_20 AC 10 ms
6,944 KB
testcase_21 AC 9 ms
6,944 KB
testcase_22 AC 10 ms
6,940 KB
testcase_23 AC 474 ms
14,868 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def binarysrch(lst, lft, rgt, trg):
	if lft == rgt:
		if lst[lft] == trg: return lft
		return -1
	m = (lft+rgt)/2
	if trg <= lst[m]: return binarysrch(lst, lft, m, trg)
	return binarysrch(lst, m+1, rgt, trg)

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:
		number.append(a[i])
		count.append(1)
		tmp = a[i]
	else: count[-1] += 1
ans = 0
for i in range(0, len(number)):
	target = X - a[i]
	judge = binarysrch(number, 0, len(number)-1, target)
	if judge != -1:
		ans += count[i]*count[judge]
print ans
0