結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 106 ms
85,384 KB
testcase_04 AC 134 ms
90,368 KB
testcase_05 AC 118 ms
88,832 KB
testcase_06 AC 131 ms
88,776 KB
testcase_07 AC 87 ms
79,832 KB
testcase_08 AC 89 ms
80,712 KB
testcase_09 AC 117 ms
90,556 KB
testcase_10 AC 95 ms
79,992 KB
testcase_11 AC 64 ms
75,520 KB
testcase_12 AC 104 ms
82,304 KB
testcase_13 AC 115 ms
90,368 KB
testcase_14 AC 66 ms
77,276 KB
testcase_15 AC 75 ms
80,512 KB
testcase_16 AC 88 ms
83,584 KB
testcase_17 AC 103 ms
88,320 KB
testcase_18 AC 91 ms
88,832 KB
testcase_19 AC 95 ms
90,496 KB
testcase_20 AC 37 ms
51,968 KB
testcase_21 AC 36 ms
51,840 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 129 ms
89,856 KB
testcase_24 AC 79 ms
78,592 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:
    ans += bisect_right(a, x - i) - bisect_left(a, x - i)

print(ans)
0