結果

問題 No.723 2つの数の和
ユーザー MIKI TakushiMIKI Takushi
提出日時 2018-12-31 00:06:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,932 KB
最終ジャッジ日時 2024-10-09 11:03:44
合計ジャッジ時間 12,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 623 ms
17,364 KB
testcase_04 AC 890 ms
20,048 KB
testcase_05 AC 797 ms
19,156 KB
testcase_06 AC 804 ms
19,176 KB
testcase_07 AC 343 ms
14,524 KB
testcase_08 AC 388 ms
15,516 KB
testcase_09 AC 822 ms
20,416 KB
testcase_10 AC 349 ms
14,460 KB
testcase_11 AC 84 ms
11,648 KB
testcase_12 AC 439 ms
15,940 KB
testcase_13 AC 935 ms
20,740 KB
testcase_14 AC 217 ms
13,056 KB
testcase_15 AC 378 ms
14,612 KB
testcase_16 AC 562 ms
16,996 KB
testcase_17 AC 770 ms
18,836 KB
testcase_18 AC 833 ms
12,740 KB
testcase_19 AC 863 ms
20,932 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 934 ms
20,724 KB
testcase_24 AC 259 ms
13,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
n,x = map(int, input().split())
al = [int(x) for x in input().split()]
al.sort()


def lower_bound(al, key):
    def isOk(a):
        return a>=key
    ng = -1
    ok = len(al)
    while abs(ok-ng)>1:
        mid = (ok+ng)//2
        if isOk(al[mid]):
            ok = mid
        else:
            ng = mid
    return ok

def upper_bound(al, key):
    def isOk(a):
        return a>key
    ng = -1
    ok = len(al)
    while abs(ok-ng)>1:
        mid = (ok+ng)//2
        if isOk(al[mid]):
            ok = mid
        else:
            ng = mid
    return ok

cnt = 0
for a in al:
    l = lower_bound(al, x-a)
    u = upper_bound(al, x-a)
    if u>l>=0:
        cnt += u-l

print(cnt)
0