結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-08-23 23:02:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 89,808 KB
最終ジャッジ日時 2024-08-23 23:03:01
合計ジャッジ時間 3,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,368 KB
testcase_01 AC 36 ms
52,700 KB
testcase_02 AC 37 ms
52,708 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 92 ms
89,272 KB
testcase_14 AC 60 ms
77,144 KB
testcase_15 AC 65 ms
80,372 KB
testcase_16 AC 75 ms
83,168 KB
testcase_17 AC 90 ms
87,552 KB
testcase_18 AC 90 ms
88,228 KB
testcase_19 AC 89 ms
89,616 KB
testcase_20 AC 35 ms
52,336 KB
testcase_21 AC 35 ms
52,884 KB
testcase_22 AC 34 ms
52,080 KB
testcase_23 AC 147 ms
89,404 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left as bl , bisect_right as br

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

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