結果

問題 No.723 2つの数の和
ユーザー Mr.FukuMr.Fuku
提出日時 2018-08-07 18:19:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,480 KB
最終ジャッジ日時 2024-09-19 18:28:54
合計ジャッジ時間 2,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 80 ms
19,404 KB
testcase_04 AC 95 ms
20,112 KB
testcase_05 AC 86 ms
20,296 KB
testcase_06 AC 89 ms
20,936 KB
testcase_07 AC 60 ms
16,300 KB
testcase_08 AC 58 ms
16,844 KB
testcase_09 AC 92 ms
20,204 KB
testcase_10 AC 52 ms
15,944 KB
testcase_11 AC 32 ms
11,776 KB
testcase_12 AC 60 ms
16,464 KB
testcase_13 AC 95 ms
20,532 KB
testcase_14 AC 41 ms
13,560 KB
testcase_15 AC 53 ms
16,464 KB
testcase_16 AC 70 ms
19,348 KB
testcase_17 AC 86 ms
20,136 KB
testcase_18 AC 59 ms
12,352 KB
testcase_19 AC 82 ms
20,716 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 AC 25 ms
10,496 KB
testcase_22 AC 25 ms
10,496 KB
testcase_23 AC 78 ms
24,480 KB
testcase_24 AC 46 ms
15,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N,X = map(int,input().split())
seq = list(map(int,input().split()))
cnt = Counter(seq)

ans = sum(cnt[X-i] for i in seq)
print(ans)
0