結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 99 ms
17,324 KB
testcase_04 AC 127 ms
20,012 KB
testcase_05 AC 117 ms
19,116 KB
testcase_06 AC 128 ms
19,132 KB
testcase_07 AC 65 ms
14,464 KB
testcase_08 AC 72 ms
15,136 KB
testcase_09 AC 126 ms
20,900 KB
testcase_10 AC 64 ms
14,404 KB
testcase_11 AC 34 ms
11,648 KB
testcase_12 AC 78 ms
15,896 KB
testcase_13 AC 132 ms
20,692 KB
testcase_14 AC 48 ms
12,928 KB
testcase_15 AC 67 ms
14,568 KB
testcase_16 AC 89 ms
16,956 KB
testcase_17 AC 114 ms
18,836 KB
testcase_18 AC 90 ms
12,640 KB
testcase_19 AC 118 ms
20,760 KB
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 119 ms
20,692 KB
testcase_24 AC 54 ms
13,568 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