結果

問題 No.723 2つの数の和
ユーザー siro53siro53
提出日時 2018-12-23 15:09:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,408 KB
最終ジャッジ日時 2024-09-25 10:32:32
合計ジャッジ時間 6,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 331 ms
24,032 KB
testcase_04 AC 455 ms
24,668 KB
testcase_05 AC 421 ms
24,976 KB
testcase_06 AC 411 ms
24,968 KB
testcase_07 AC 189 ms
18,512 KB
testcase_08 AC 213 ms
19,008 KB
testcase_09 AC 427 ms
24,548 KB
testcase_10 AC 194 ms
18,224 KB
testcase_11 AC 58 ms
12,544 KB
testcase_12 AC 239 ms
18,644 KB
testcase_13 AC 489 ms
24,640 KB
testcase_14 AC 129 ms
14,704 KB
testcase_15 AC 214 ms
18,348 KB
testcase_16 AC 306 ms
23,668 KB
testcase_17 AC 414 ms
24,028 KB
testcase_18 AC 143 ms
12,656 KB
testcase_19 AC 176 ms
20,884 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 426 ms
25,408 KB
testcase_24 AC 151 ms
17,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bs(array, aim):
    left = 0
    right = len(array) - 1

    while left <= right:
        pivot = (left + right) // 2
        if array[pivot] == aim:
            return 1
        elif array[pivot] > aim:
            right = pivot - 1
        else:
            left = pivot + 1
    return 0

N, X = map(int, input().split())
A = list(map(int, input().split()))
A.sort()

cnt = {}
for a in A:
    if a in cnt:
        cnt[a] += 1
    else:
        cnt[a] = 1

ans = 0
for a in range(N):
    x = X - A[a]
    if not x in cnt:
        cnt[x] = 0
    ans += bs(A, x) * cnt[x]
print(ans)
0