結果

問題 No.723 2つの数の和
ユーザー lloyzlloyz
提出日時 2022-06-04 11:45:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,796 KB
最終ジャッジ日時 2024-09-21 03:38:18
合計ジャッジ時間 3,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 84 ms
20,044 KB
testcase_04 AC 99 ms
20,892 KB
testcase_05 AC 88 ms
21,312 KB
testcase_06 AC 97 ms
21,584 KB
testcase_07 AC 60 ms
17,636 KB
testcase_08 AC 64 ms
18,232 KB
testcase_09 AC 93 ms
20,332 KB
testcase_10 AC 58 ms
17,368 KB
testcase_11 AC 33 ms
12,416 KB
testcase_12 AC 67 ms
17,656 KB
testcase_13 AC 91 ms
20,520 KB
testcase_14 AC 45 ms
16,064 KB
testcase_15 AC 57 ms
17,924 KB
testcase_16 AC 72 ms
19,620 KB
testcase_17 AC 81 ms
20,932 KB
testcase_18 AC 53 ms
12,496 KB
testcase_19 AC 72 ms
20,792 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 AC 26 ms
10,496 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 121 ms
27,796 KB
testcase_24 AC 49 ms
16,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n, x = map(int, input().split())
counter = Counter(list(map(int, input().split())))

ans = 0
vals = set(counter.keys())
for val, cnt in counter.items():
    if x - val in vals:
        ans += cnt * counter[x -val]
print(ans)
0