結果

問題 No.723 2つの数の和
ユーザー roknaoroknao
提出日時 2019-10-28 15:54:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-09-14 21:14:31
合計ジャッジ時間 3,919 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 109 ms
84,436 KB
testcase_04 AC 137 ms
89,472 KB
testcase_05 AC 124 ms
87,544 KB
testcase_06 AC 139 ms
87,936 KB
testcase_07 AC 90 ms
79,360 KB
testcase_08 AC 94 ms
80,316 KB
testcase_09 AC 123 ms
89,344 KB
testcase_10 AC 95 ms
79,708 KB
testcase_11 AC 68 ms
76,032 KB
testcase_12 AC 108 ms
81,792 KB
testcase_13 AC 119 ms
89,088 KB
testcase_14 AC 71 ms
77,060 KB
testcase_15 AC 82 ms
80,384 KB
testcase_16 AC 97 ms
83,200 KB
testcase_17 AC 111 ms
87,468 KB
testcase_18 AC 99 ms
87,808 KB
testcase_19 AC 104 ms
88,704 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 135 ms
88,576 KB
testcase_24 AC 78 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import sys
input = sys.stdin.readline


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

    ans = 0
    for i in range(N):
        r = bisect.bisect_right(A, X-A[i])
        l = bisect.bisect_left(A, X-A[i])
        ans += r - l
    
    print(ans)


if __name__ == '__main__':
    main()
0