結果

問題 No.723 2つの数の和
ユーザー GrayCoderGrayCoder
提出日時 2018-08-03 23:15:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,628 KB
最終ジャッジ日時 2024-09-19 17:39:58
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 95 ms
17,180 KB
testcase_04 AC 122 ms
19,740 KB
testcase_05 AC 115 ms
18,844 KB
testcase_06 AC 117 ms
18,856 KB
testcase_07 AC 62 ms
14,328 KB
testcase_08 AC 68 ms
14,860 KB
testcase_09 AC 120 ms
20,628 KB
testcase_10 AC 65 ms
14,144 KB
testcase_11 AC 33 ms
11,520 KB
testcase_12 AC 76 ms
15,624 KB
testcase_13 AC 125 ms
20,548 KB
testcase_14 AC 47 ms
12,800 KB
testcase_15 AC 64 ms
14,296 KB
testcase_16 AC 86 ms
16,556 KB
testcase_17 AC 109 ms
18,528 KB
testcase_18 AC 89 ms
12,384 KB
testcase_19 AC 114 ms
20,612 KB
testcase_20 AC 27 ms
10,496 KB
testcase_21 AC 26 ms
10,624 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 115 ms
20,540 KB
testcase_24 AC 53 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect, bisect_left
from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    N, X = map(int, input().split())
    A = list(map(int, input().split()))

    A.sort()
    ans = 0
    for ai in A:
        aj = X - ai
        i = bisect_left(A, aj)
        j = bisect(A, aj)
        ans += j - i
    print(ans)

main()
0