結果

問題 No.723 2つの数の和
ユーザー ryusukeryusuke
提出日時 2022-01-27 01:45:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-06-06 09:56:56
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 101 ms
85,332 KB
testcase_04 AC 133 ms
90,112 KB
testcase_05 AC 116 ms
88,364 KB
testcase_06 AC 132 ms
88,672 KB
testcase_07 AC 86 ms
79,732 KB
testcase_08 AC 93 ms
81,088 KB
testcase_09 AC 119 ms
90,624 KB
testcase_10 AC 94 ms
79,744 KB
testcase_11 AC 62 ms
75,368 KB
testcase_12 AC 104 ms
82,432 KB
testcase_13 AC 113 ms
90,480 KB
testcase_14 AC 66 ms
77,124 KB
testcase_15 AC 78 ms
80,500 KB
testcase_16 AC 92 ms
83,652 KB
testcase_17 AC 102 ms
88,680 KB
testcase_18 AC 92 ms
88,576 KB
testcase_19 AC 102 ms
90,268 KB
testcase_20 AC 36 ms
51,712 KB
testcase_21 AC 35 ms
51,712 KB
testcase_22 AC 36 ms
51,712 KB
testcase_23 AC 129 ms
90,076 KB
testcase_24 AC 75 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right

n, x = map(int, input().split())
a = sorted(list(map(int, input().split())))

print(sum(bisect_right(a, x - i) - bisect_left(a, x - i) for i in a))
0