結果

問題 No.723 2つの数の和
ユーザー ntudantuda
提出日時 2023-12-30 22:16:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 119,900 KB
最終ジャッジ日時 2024-09-27 16:53:56
合計ジャッジ時間 4,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,456 KB
testcase_01 AC 44 ms
54,612 KB
testcase_02 AC 45 ms
54,252 KB
testcase_03 AC 95 ms
94,092 KB
testcase_04 AC 130 ms
107,160 KB
testcase_05 AC 139 ms
111,904 KB
testcase_06 AC 101 ms
97,188 KB
testcase_07 AC 78 ms
83,128 KB
testcase_08 AC 85 ms
85,996 KB
testcase_09 AC 102 ms
98,092 KB
testcase_10 AC 97 ms
95,292 KB
testcase_11 AC 68 ms
76,176 KB
testcase_12 AC 87 ms
87,096 KB
testcase_13 AC 87 ms
94,544 KB
testcase_14 AC 58 ms
69,788 KB
testcase_15 AC 66 ms
76,516 KB
testcase_16 AC 75 ms
84,088 KB
testcase_17 AC 81 ms
91,124 KB
testcase_18 AC 68 ms
80,856 KB
testcase_19 AC 109 ms
119,900 KB
testcase_20 AC 43 ms
53,900 KB
testcase_21 AC 43 ms
54,252 KB
testcase_22 AC 42 ms
55,244 KB
testcase_23 AC 90 ms
100,696 KB
testcase_24 AC 106 ms
101,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
A = list(map(int, input().split()))
from collections import defaultdict
dic = defaultdict(int)
for a in A:
    dic[a] += 1

if X > 2 * 10 ** 5:
    print(0)
    exit()
ans = 0
for i in range(X+1):
    ans += dic[i] * dic[X-i]

print(ans)

0