結果

問題 No.723 2つの数の和
ユーザー toyuzukotoyuzuko
提出日時 2020-06-19 23:24:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,428 KB
最終ジャッジ日時 2024-07-03 15:49:09
合計ジャッジ時間 3,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 87 ms
19,448 KB
testcase_04 AC 111 ms
20,220 KB
testcase_05 AC 105 ms
20,316 KB
testcase_06 AC 107 ms
20,776 KB
testcase_07 AC 66 ms
16,260 KB
testcase_08 AC 66 ms
16,912 KB
testcase_09 AC 104 ms
20,468 KB
testcase_10 AC 63 ms
16,068 KB
testcase_11 AC 34 ms
12,032 KB
testcase_12 AC 71 ms
16,540 KB
testcase_13 AC 110 ms
20,660 KB
testcase_14 AC 46 ms
13,696 KB
testcase_15 AC 60 ms
16,532 KB
testcase_16 AC 79 ms
19,592 KB
testcase_17 AC 95 ms
20,128 KB
testcase_18 AC 63 ms
12,780 KB
testcase_19 AC 84 ms
20,848 KB
testcase_20 AC 26 ms
10,624 KB
testcase_21 AC 25 ms
10,624 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 144 ms
24,428 KB
testcase_24 AC 52 ms
15,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, X = map(int, input().split())
A = tuple(map(int, input().split()))

D = defaultdict(int)

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

res = 0

for k, v in D.items():
    if X - k in D:
        res += D[X - k] * v

print(res)
0