結果

問題 No.723 2つの数の和
ユーザー 双六双六
提出日時 2019-04-06 08:09:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,136 KB
最終ジャッジ日時 2024-06-23 13:12:24
合計ジャッジ時間 3,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 121 ms
24,064 KB
testcase_04 AC 145 ms
23,996 KB
testcase_05 AC 140 ms
24,240 KB
testcase_06 AC 135 ms
25,136 KB
testcase_07 AC 82 ms
18,416 KB
testcase_08 AC 87 ms
19,116 KB
testcase_09 AC 146 ms
24,448 KB
testcase_10 AC 80 ms
18,076 KB
testcase_11 AC 41 ms
12,288 KB
testcase_12 AC 96 ms
18,736 KB
testcase_13 AC 147 ms
24,436 KB
testcase_14 AC 61 ms
14,676 KB
testcase_15 AC 85 ms
18,448 KB
testcase_16 AC 116 ms
23,520 KB
testcase_17 AC 128 ms
24,068 KB
testcase_18 AC 70 ms
12,616 KB
testcase_19 AC 89 ms
20,848 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 141 ms
24,344 KB
testcase_24 AC 69 ms
17,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, X = list(map(int, input().split()))
a = list(map(int, input().split()))
D = defaultdict(int)

for i in range(N):
	D[a[i]] += 1

ans = 0
for i in list(D):
	ans += D[i] * D[X - i]

print(ans)
0