結果

問題 No.723 2つの数の和
ユーザー FukumotoFukumoto
提出日時 2020-06-08 23:03:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 20,748 KB
最終ジャッジ日時 2024-12-26 17:42:05
合計ジャッジ時間 5,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,496 KB
testcase_01 AC 38 ms
10,624 KB
testcase_02 AC 36 ms
10,496 KB
testcase_03 AC 162 ms
16,912 KB
testcase_04 AC 208 ms
19,728 KB
testcase_05 AC 198 ms
18,724 KB
testcase_06 AC 197 ms
18,796 KB
testcase_07 AC 105 ms
14,192 KB
testcase_08 AC 111 ms
14,728 KB
testcase_09 AC 213 ms
20,748 KB
testcase_10 AC 103 ms
14,124 KB
testcase_11 AC 51 ms
11,392 KB
testcase_12 AC 132 ms
15,740 KB
testcase_13 AC 225 ms
20,284 KB
testcase_14 AC 79 ms
12,672 KB
testcase_15 AC 111 ms
14,284 KB
testcase_16 AC 152 ms
16,548 KB
testcase_17 AC 194 ms
18,392 KB
testcase_18 AC 162 ms
12,236 KB
testcase_19 AC 199 ms
20,476 KB
testcase_20 AC 37 ms
10,496 KB
testcase_21 AC 38 ms
10,496 KB
testcase_22 AC 36 ms
10,496 KB
testcase_23 AC 199 ms
20,516 KB
testcase_24 AC 85 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, X = list(map(int, input().split()))
A = list(map(int, input().split()))
ans = 0

A = sorted(A)
for a in A:
    l = bisect_left(A, X-a)
    r = bisect_right(A, X-a)
 
    ans += r-l
print(ans)
0