結果

問題 No.723 2つの数の和
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 15:42:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,532 KB
最終ジャッジ日時 2024-05-03 00:48:25
合計ジャッジ時間 4,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 142 ms
26,136 KB
testcase_04 AC 174 ms
26,752 KB
testcase_05 AC 169 ms
27,028 KB
testcase_06 AC 178 ms
27,172 KB
testcase_07 AC 98 ms
19,620 KB
testcase_08 AC 113 ms
19,956 KB
testcase_09 AC 182 ms
27,216 KB
testcase_10 AC 92 ms
19,840 KB
testcase_11 AC 44 ms
12,744 KB
testcase_12 AC 119 ms
19,740 KB
testcase_13 AC 185 ms
26,660 KB
testcase_14 AC 70 ms
17,160 KB
testcase_15 AC 99 ms
19,788 KB
testcase_16 AC 130 ms
25,728 KB
testcase_17 AC 163 ms
26,940 KB
testcase_18 AC 77 ms
12,484 KB
testcase_19 AC 98 ms
20,716 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 32 ms
10,624 KB
testcase_23 AC 161 ms
28,532 KB
testcase_24 AC 82 ms
19,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


n,x=map(int,input().split())
d=defaultdict(int)
a=list(map(int,input().split()))
ans=0
done=set()
for i in a:
    d[i]+=1
for i in a:
    if i in done:
        continue
    ans+=d[i]*d[x-i]
    done.add(i)
print(ans)
0