結果

問題 No.723 2つの数の和
ユーザー daku9640daku9640
提出日時 2018-08-04 00:58:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,288 KB
最終ジャッジ日時 2024-09-19 17:41:58
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 72 ms
20,312 KB
testcase_04 AC 88 ms
21,772 KB
testcase_05 AC 81 ms
21,204 KB
testcase_06 AC 85 ms
21,224 KB
testcase_07 AC 54 ms
15,624 KB
testcase_08 AC 61 ms
15,900 KB
testcase_09 AC 86 ms
21,444 KB
testcase_10 AC 53 ms
15,636 KB
testcase_11 AC 34 ms
11,904 KB
testcase_12 AC 61 ms
16,192 KB
testcase_13 AC 83 ms
21,768 KB
testcase_14 AC 42 ms
13,072 KB
testcase_15 AC 53 ms
15,712 KB
testcase_16 AC 65 ms
19,968 KB
testcase_17 AC 75 ms
20,948 KB
testcase_18 AC 55 ms
11,968 KB
testcase_19 AC 71 ms
16,804 KB
testcase_20 AC 28 ms
10,496 KB
testcase_21 AC 29 ms
10,496 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 110 ms
27,288 KB
testcase_24 AC 47 ms
14,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n, x = map(int, input().split())
c = Counter(map(int, input().split()))
print(sum(c[k] * c[x - k] for k, v in c.items() if x - k in c))
0