結果

問題 No.723 2つの数の和
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 15:42:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,596 KB
最終ジャッジ日時 2024-11-23 20:39:08
合計ジャッジ時間 4,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 140 ms
26,360 KB
testcase_04 AC 167 ms
26,712 KB
testcase_05 AC 167 ms
27,616 KB
testcase_06 AC 164 ms
26,968 KB
testcase_07 AC 95 ms
19,616 KB
testcase_08 AC 100 ms
20,472 KB
testcase_09 AC 174 ms
27,432 KB
testcase_10 AC 90 ms
19,840 KB
testcase_11 AC 44 ms
12,868 KB
testcase_12 AC 112 ms
19,500 KB
testcase_13 AC 174 ms
26,788 KB
testcase_14 AC 69 ms
17,052 KB
testcase_15 AC 98 ms
19,676 KB
testcase_16 AC 130 ms
25,744 KB
testcase_17 AC 153 ms
26,700 KB
testcase_18 AC 75 ms
12,612 KB
testcase_19 AC 96 ms
20,716 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,496 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 159 ms
28,596 KB
testcase_24 AC 79 ms
19,820 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