結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,344 KB
testcase_01 AC 33 ms
52,076 KB
testcase_02 AC 35 ms
52,024 KB
testcase_03 AC 102 ms
85,656 KB
testcase_04 AC 132 ms
90,084 KB
testcase_05 AC 116 ms
88,308 KB
testcase_06 AC 127 ms
88,540 KB
testcase_07 AC 88 ms
80,124 KB
testcase_08 AC 88 ms
80,764 KB
testcase_09 AC 112 ms
90,624 KB
testcase_10 AC 93 ms
79,848 KB
testcase_11 AC 62 ms
75,784 KB
testcase_12 AC 101 ms
82,328 KB
testcase_13 AC 109 ms
90,544 KB
testcase_14 AC 68 ms
77,492 KB
testcase_15 AC 76 ms
80,628 KB
testcase_16 AC 86 ms
83,908 KB
testcase_17 AC 98 ms
88,412 KB
testcase_18 AC 91 ms
88,900 KB
testcase_19 AC 93 ms
90,252 KB
testcase_20 AC 36 ms
53,012 KB
testcase_21 AC 37 ms
52,884 KB
testcase_22 AC 37 ms
52,192 KB
testcase_23 AC 129 ms
90,052 KB
testcase_24 AC 80 ms
78,392 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