結果

問題 No.723 2つの数の和
ユーザー syunsukesyunsuke
提出日時 2019-05-24 23:40:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,996 KB
最終ジャッジ日時 2024-09-17 12:51:20
合計ジャッジ時間 3,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 151 ms
17,788 KB
testcase_04 AC 197 ms
19,908 KB
testcase_05 AC 177 ms
19,180 KB
testcase_06 AC 186 ms
19,480 KB
testcase_07 AC 93 ms
16,876 KB
testcase_08 AC 105 ms
17,460 KB
testcase_09 AC 186 ms
20,272 KB
testcase_10 AC 94 ms
16,692 KB
testcase_11 AC 43 ms
12,032 KB
testcase_12 AC 113 ms
17,040 KB
testcase_13 AC 178 ms
20,720 KB
testcase_14 AC 66 ms
15,360 KB
testcase_15 AC 91 ms
16,892 KB
testcase_16 AC 123 ms
18,036 KB
testcase_17 AC 155 ms
18,880 KB
testcase_18 AC 76 ms
12,668 KB
testcase_19 AC 93 ms
20,908 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 263 ms
22,996 KB
testcase_24 AC 74 ms
15,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,X=map(int,input().split())

a=list(map(int,input().split()))

c=set(a)
b=list(c)
b.sort()
#print(b)

L=[0 for i in range(len(b))]

for i in range(N):
    L[bisect.bisect_left(b,a[i])]+=1
#print(L)
ans=0
ans2=0
for i in range(len(b)):
    if b[i]*2==X:
        ans2+=L[bisect.bisect_left(b,b[i])]**2
    else:
        if (X-b[i]) in c:
            ans+=L[bisect.bisect_left(b,b[i])]*L[bisect.bisect_left(b,X-b[i])]
            #print(L[bisect.bisect_left(b,b[i])],L[bisect.bisect_left(b,X-b[i])])
print(ans+ans2)
#print(ans,ans2)
        
0