結果

問題 No.723 2つの数の和
ユーザー 💕💖💞💕💖💞
提出日時 2018-08-04 12:52:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,332 KB
最終ジャッジ日時 2024-09-19 17:48:28
合計ジャッジ時間 2,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 87 ms
21,380 KB
testcase_04 AC 105 ms
22,152 KB
testcase_05 AC 95 ms
22,488 KB
testcase_06 AC 101 ms
22,888 KB
testcase_07 AC 66 ms
18,424 KB
testcase_08 AC 65 ms
18,900 KB
testcase_09 AC 102 ms
22,524 KB
testcase_10 AC 60 ms
18,336 KB
testcase_11 AC 33 ms
12,672 KB
testcase_12 AC 69 ms
18,528 KB
testcase_13 AC 99 ms
22,696 KB
testcase_14 AC 45 ms
15,892 KB
testcase_15 AC 59 ms
18,576 KB
testcase_16 AC 78 ms
21,528 KB
testcase_17 AC 88 ms
22,132 KB
testcase_18 AC 61 ms
12,616 KB
testcase_19 AC 79 ms
20,724 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 140 ms
30,332 KB
testcase_24 AC 53 ms
17,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N,X = [int(x) for x in input().split()]
xs = [int(x) for x in input().split()]

keys  = set(xs)
count = Counter(xs)

sum = 0
for key in list(keys):
  if X-key in keys:
    sum += count[key]*count[X-key]

print(sum)
0