結果

問題 No.723 2つの数の和
ユーザー rookzenorookzeno
提出日時 2018-08-03 22:36:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,144 KB
最終ジャッジ日時 2024-09-19 17:30:41
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 125 ms
19,932 KB
testcase_04 AC 145 ms
22,092 KB
testcase_05 AC 148 ms
21,216 KB
testcase_06 AC 154 ms
21,444 KB
testcase_07 AC 90 ms
16,136 KB
testcase_08 AC 102 ms
17,308 KB
testcase_09 AC 174 ms
22,092 KB
testcase_10 AC 87 ms
16,312 KB
testcase_11 AC 42 ms
11,904 KB
testcase_12 AC 108 ms
17,188 KB
testcase_13 AC 172 ms
22,244 KB
testcase_14 AC 63 ms
14,048 KB
testcase_15 AC 87 ms
16,400 KB
testcase_16 AC 123 ms
19,464 KB
testcase_17 AC 147 ms
21,284 KB
testcase_18 AC 55 ms
12,484 KB
testcase_19 AC 73 ms
20,716 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 158 ms
28,144 KB
testcase_24 AC 72 ms
15,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x = map(int,input().split())
a = list(map(int,input().split()))
a = sorted(a)
import collections
c = collections.Counter(a)
e = c.most_common()
ans = 0
for i in range(len(e)):
  b = e[i][0]
  d = x-b
  k = c[d]
  ans += e[i][1] * k
print(ans)
0