結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,356 KB
testcase_01 AC 34 ms
52,712 KB
testcase_02 AC 36 ms
52,996 KB
testcase_03 AC 104 ms
85,508 KB
testcase_04 AC 135 ms
90,300 KB
testcase_05 AC 118 ms
88,660 KB
testcase_06 AC 132 ms
88,648 KB
testcase_07 AC 90 ms
79,840 KB
testcase_08 AC 94 ms
80,956 KB
testcase_09 AC 117 ms
90,428 KB
testcase_10 AC 90 ms
79,812 KB
testcase_11 AC 64 ms
75,460 KB
testcase_12 AC 105 ms
82,228 KB
testcase_13 AC 112 ms
90,480 KB
testcase_14 AC 70 ms
77,280 KB
testcase_15 AC 76 ms
80,372 KB
testcase_16 AC 92 ms
83,576 KB
testcase_17 AC 102 ms
88,352 KB
testcase_18 AC 98 ms
88,868 KB
testcase_19 AC 97 ms
90,296 KB
testcase_20 AC 37 ms
52,812 KB
testcase_21 AC 35 ms
51,688 KB
testcase_22 AC 37 ms
52,140 KB
testcase_23 AC 129 ms
89,764 KB
testcase_24 AC 74 ms
78,564 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