結果

問題 No.723 2つの数の和
ユーザー s_shoheis_shohei
提出日時 2020-04-16 22:55:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-10-02 14:44:42
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 135 ms
85,248 KB
testcase_04 AC 158 ms
89,728 KB
testcase_05 AC 138 ms
87,936 KB
testcase_06 AC 163 ms
88,064 KB
testcase_07 AC 104 ms
79,872 KB
testcase_08 AC 94 ms
80,968 KB
testcase_09 AC 142 ms
90,240 KB
testcase_10 AC 111 ms
79,872 KB
testcase_11 AC 75 ms
75,904 KB
testcase_12 AC 109 ms
82,176 KB
testcase_13 AC 124 ms
89,984 KB
testcase_14 AC 78 ms
77,312 KB
testcase_15 AC 91 ms
80,512 KB
testcase_16 AC 103 ms
83,456 KB
testcase_17 AC 117 ms
87,808 KB
testcase_18 AC 112 ms
88,576 KB
testcase_19 AC 109 ms
90,112 KB
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 40 ms
51,968 KB
testcase_22 AC 41 ms
51,840 KB
testcase_23 AC 144 ms
89,600 KB
testcase_24 AC 93 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import bisect
ans=0
for i in range(n):
    now=a[i]
    nokori = x-now
    ind1 = bisect.bisect_left(a,nokori)
    ind2 = bisect.bisect_right(a,nokori)
    ans+=(ind2-ind1)

print(ans)
0