結果

問題 No.723 2つの数の和
ユーザー 👑 rin204rin204
提出日時 2020-06-30 15:52:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,856 KB
最終ジャッジ日時 2024-07-23 19:03:43
合計ジャッジ時間 4,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 130 ms
17,296 KB
testcase_04 AC 176 ms
19,984 KB
testcase_05 AC 160 ms
18,960 KB
testcase_06 AC 165 ms
18,984 KB
testcase_07 AC 85 ms
14,316 KB
testcase_08 AC 92 ms
14,984 KB
testcase_09 AC 175 ms
20,748 KB
testcase_10 AC 86 ms
14,252 KB
testcase_11 AC 40 ms
11,648 KB
testcase_12 AC 108 ms
15,872 KB
testcase_13 AC 173 ms
20,540 KB
testcase_14 AC 62 ms
13,056 KB
testcase_15 AC 85 ms
14,544 KB
testcase_16 AC 116 ms
16,676 KB
testcase_17 AC 154 ms
18,648 KB
testcase_18 AC 132 ms
12,492 KB
testcase_19 AC 154 ms
20,856 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 160 ms
20,532 KB
testcase_24 AC 69 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right, bisect_left

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

ans = 0
for num in alst:
    tmp = x - num
    if num == tmp:
        ans += bisect_right(alst, tmp) - bisect_left(alst, tmp)
    else:
        ans += bisect_right(alst, tmp) - bisect_left(alst, tmp)
print(ans)
0