結果

問題 No.723 2つの数の和
ユーザー hedwig100hedwig100
提出日時 2020-04-26 20:19:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,900 KB
最終ジャッジ日時 2024-04-29 06:22:22
合計ジャッジ時間 3,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 119 ms
17,320 KB
testcase_04 AC 151 ms
19,880 KB
testcase_05 AC 139 ms
19,116 KB
testcase_06 AC 140 ms
19,128 KB
testcase_07 AC 73 ms
14,464 KB
testcase_08 AC 81 ms
14,876 KB
testcase_09 AC 145 ms
20,900 KB
testcase_10 AC 74 ms
14,148 KB
testcase_11 AC 39 ms
11,648 KB
testcase_12 AC 89 ms
15,768 KB
testcase_13 AC 150 ms
20,568 KB
testcase_14 AC 56 ms
12,928 KB
testcase_15 AC 75 ms
14,568 KB
testcase_16 AC 101 ms
16,828 KB
testcase_17 AC 128 ms
18,676 KB
testcase_18 AC 101 ms
12,520 KB
testcase_19 AC 129 ms
20,884 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 133 ms
20,560 KB
testcase_24 AC 62 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from bisect import bisect_left,bisect_right

def main():
    n,x = map(int,input().split())
    a = list(map(int,input().split()))
    a.sort()

    ans = 0
    for num in a:
        ans += bisect_right(a,x - num) - bisect_left(a,x - num)
    print(ans)
if __name__ == '__main__':
    main()
0