結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,748 KB
testcase_01 AC 41 ms
53,024 KB
testcase_02 AC 40 ms
52,420 KB
testcase_03 AC 105 ms
92,148 KB
testcase_04 AC 135 ms
98,780 KB
testcase_05 AC 116 ms
97,144 KB
testcase_06 AC 133 ms
96,928 KB
testcase_07 AC 90 ms
83,288 KB
testcase_08 AC 89 ms
84,924 KB
testcase_09 AC 118 ms
99,092 KB
testcase_10 AC 92 ms
82,708 KB
testcase_11 AC 60 ms
67,484 KB
testcase_12 AC 94 ms
87,452 KB
testcase_13 AC 92 ms
91,372 KB
testcase_14 AC 56 ms
67,584 KB
testcase_15 AC 68 ms
73,880 KB
testcase_16 AC 75 ms
81,248 KB
testcase_17 AC 86 ms
87,728 KB
testcase_18 AC 103 ms
87,888 KB
testcase_19 AC 111 ms
89,552 KB
testcase_20 AC 41 ms
53,420 KB
testcase_21 AC 41 ms
52,436 KB
testcase_22 AC 40 ms
52,264 KB
testcase_23 AC 158 ms
103,728 KB
testcase_24 AC 73 ms
76,760 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