結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-08-23 23:13:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 90,356 KB
最終ジャッジ日時 2024-08-23 23:13:31
合計ジャッジ時間 3,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,540 KB
testcase_01 AC 41 ms
52,852 KB
testcase_02 AC 41 ms
52,240 KB
testcase_03 AC 111 ms
85,292 KB
testcase_04 AC 145 ms
89,932 KB
testcase_05 AC 129 ms
88,052 KB
testcase_06 AC 143 ms
88,308 KB
testcase_07 AC 93 ms
79,664 KB
testcase_08 AC 100 ms
80,668 KB
testcase_09 AC 124 ms
90,356 KB
testcase_10 AC 101 ms
79,816 KB
testcase_11 AC 68 ms
75,952 KB
testcase_12 AC 111 ms
82,140 KB
testcase_13 AC 119 ms
90,056 KB
testcase_14 AC 72 ms
77,476 KB
testcase_15 AC 84 ms
80,504 KB
testcase_16 AC 97 ms
83,452 KB
testcase_17 AC 114 ms
87,932 KB
testcase_18 AC 99 ms
88,256 KB
testcase_19 AC 108 ms
89,664 KB
testcase_20 AC 40 ms
53,008 KB
testcase_21 AC 39 ms
53,124 KB
testcase_22 AC 40 ms
52,492 KB
testcase_23 AC 137 ms
89,352 KB
testcase_24 AC 88 ms
78,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left as bl , bisect_right as br

n,x=map(int,input().split())
A=list(map(int,input().split()))
A.sort()

ans=0
for i,a in enumerate(A):
    right=br(A,x-a)
    left=bl(A,x-a)
    ans+=right-left

print(ans)
0