結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 134 ms
17,300 KB
testcase_04 AC 185 ms
19,988 KB
testcase_05 AC 164 ms
19,084 KB
testcase_06 AC 172 ms
19,104 KB
testcase_07 AC 86 ms
14,448 KB
testcase_08 AC 97 ms
15,112 KB
testcase_09 AC 179 ms
20,872 KB
testcase_10 AC 86 ms
14,380 KB
testcase_11 AC 41 ms
11,776 KB
testcase_12 AC 107 ms
15,868 KB
testcase_13 AC 185 ms
20,664 KB
testcase_14 AC 62 ms
13,056 KB
testcase_15 AC 90 ms
14,544 KB
testcase_16 AC 124 ms
16,800 KB
testcase_17 AC 156 ms
18,772 KB
testcase_18 AC 130 ms
12,620 KB
testcase_19 AC 156 ms
20,860 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 159 ms
20,660 KB
testcase_24 AC 70 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