結果

問題 No.723 2つの数の和
ユーザー rlangevinrlangevin
提出日時 2023-01-03 20:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-11-27 02:23:17
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 38 ms
53,288 KB
testcase_02 AC 37 ms
53,632 KB
testcase_03 AC 77 ms
93,440 KB
testcase_04 AC 87 ms
101,248 KB
testcase_05 AC 89 ms
100,736 KB
testcase_06 AC 86 ms
99,200 KB
testcase_07 AC 68 ms
81,920 KB
testcase_08 AC 69 ms
84,224 KB
testcase_09 AC 91 ms
103,552 KB
testcase_10 AC 66 ms
80,768 KB
testcase_11 AC 50 ms
66,432 KB
testcase_12 AC 74 ms
87,808 KB
testcase_13 AC 97 ms
105,728 KB
testcase_14 AC 60 ms
74,240 KB
testcase_15 AC 68 ms
83,840 KB
testcase_16 AC 80 ms
93,056 KB
testcase_17 AC 85 ms
100,480 KB
testcase_18 AC 62 ms
83,072 KB
testcase_19 AC 64 ms
86,144 KB
testcase_20 AC 38 ms
53,376 KB
testcase_21 AC 37 ms
53,888 KB
testcase_22 AC 37 ms
53,504 KB
testcase_23 AC 83 ms
102,528 KB
testcase_24 AC 62 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, X = map(int, input().split())
D = defaultdict(int)
A = list(map(int, input().split()))
for a in A:
    D[a] += 1
    D[X - a] += 0
ans = 0
for a in A:
    ans += D[X - a]
print(ans)
0