結果

問題 No.723 2つの数の和
ユーザー ryusukeryusuke
提出日時 2022-01-27 01:44:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-12-24 00:20:34
合計ジャッジ時間 3,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 122 ms
85,376 KB
testcase_04 AC 152 ms
90,368 KB
testcase_05 AC 137 ms
88,576 KB
testcase_06 AC 132 ms
88,704 KB
testcase_07 AC 92 ms
79,872 KB
testcase_08 AC 102 ms
80,768 KB
testcase_09 AC 122 ms
90,624 KB
testcase_10 AC 114 ms
80,128 KB
testcase_11 AC 74 ms
72,448 KB
testcase_12 AC 100 ms
82,560 KB
testcase_13 AC 126 ms
90,368 KB
testcase_14 AC 80 ms
77,696 KB
testcase_15 AC 90 ms
80,896 KB
testcase_16 AC 105 ms
83,840 KB
testcase_17 AC 128 ms
88,320 KB
testcase_18 AC 106 ms
88,832 KB
testcase_19 AC 110 ms
90,368 KB
testcase_20 AC 43 ms
51,968 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 39 ms
51,584 KB
testcase_23 AC 148 ms
89,984 KB
testcase_24 AC 96 ms
78,464 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