結果

問題 No.723 2つの数の和
ユーザー ryusukeryusuke
提出日時 2022-01-27 01:44:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 91,044 KB
最終ジャッジ日時 2024-06-06 09:55:08
合計ジャッジ時間 3,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,704 KB
testcase_01 AC 35 ms
53,100 KB
testcase_02 AC 36 ms
53,120 KB
testcase_03 AC 94 ms
85,324 KB
testcase_04 AC 131 ms
90,116 KB
testcase_05 AC 117 ms
88,668 KB
testcase_06 AC 113 ms
88,564 KB
testcase_07 AC 74 ms
80,384 KB
testcase_08 AC 81 ms
80,676 KB
testcase_09 AC 102 ms
91,044 KB
testcase_10 AC 94 ms
79,808 KB
testcase_11 AC 57 ms
73,040 KB
testcase_12 AC 80 ms
82,404 KB
testcase_13 AC 105 ms
90,296 KB
testcase_14 AC 66 ms
77,072 KB
testcase_15 AC 75 ms
80,844 KB
testcase_16 AC 85 ms
83,820 KB
testcase_17 AC 100 ms
88,448 KB
testcase_18 AC 93 ms
88,668 KB
testcase_19 AC 94 ms
90,424 KB
testcase_20 AC 37 ms
53,356 KB
testcase_21 AC 36 ms
52,484 KB
testcase_22 AC 37 ms
52,896 KB
testcase_23 AC 127 ms
90,072 KB
testcase_24 AC 78 ms
78,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right

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

ans = 0
for i in a:
    if x - i >= 0:
        ans += bisect_right(a, x - i) - bisect_left(a, x - i)

print(ans)
0