結果

問題 No.723 2つの数の和
ユーザー yansi819yansi819
提出日時 2024-05-14 09:12:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 103,724 KB
最終ジャッジ日時 2024-05-14 09:13:01
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,196 KB
testcase_01 AC 40 ms
53,764 KB
testcase_02 AC 38 ms
53,148 KB
testcase_03 AC 103 ms
92,408 KB
testcase_04 AC 131 ms
98,880 KB
testcase_05 AC 107 ms
96,956 KB
testcase_06 AC 121 ms
97,036 KB
testcase_07 AC 80 ms
83,668 KB
testcase_08 AC 86 ms
85,156 KB
testcase_09 AC 115 ms
98,988 KB
testcase_10 AC 87 ms
83,224 KB
testcase_11 AC 58 ms
67,660 KB
testcase_12 AC 89 ms
87,688 KB
testcase_13 AC 89 ms
91,528 KB
testcase_14 AC 53 ms
68,192 KB
testcase_15 AC 68 ms
74,908 KB
testcase_16 AC 71 ms
81,740 KB
testcase_17 AC 81 ms
87,268 KB
testcase_18 AC 98 ms
88,860 KB
testcase_19 AC 102 ms
89,664 KB
testcase_20 AC 39 ms
52,664 KB
testcase_21 AC 39 ms
54,064 KB
testcase_22 AC 40 ms
52,072 KB
testcase_23 AC 150 ms
103,724 KB
testcase_24 AC 69 ms
76,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N, X = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
B = set(A)
ans = 0
for a in A:
    if X - a in B:
        pos1 = bisect_left(A, X - a)
        pos2 = bisect_right(A, X - a) - 1
        ans += pos2 - pos1 + 1
print(ans)
0