結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 39 ms
53,248 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 87 ms
92,672 KB
testcase_04 AC 98 ms
101,376 KB
testcase_05 AC 95 ms
100,736 KB
testcase_06 AC 104 ms
98,944 KB
testcase_07 AC 75 ms
81,024 KB
testcase_08 AC 83 ms
83,712 KB
testcase_09 AC 101 ms
103,040 KB
testcase_10 AC 72 ms
79,872 KB
testcase_11 AC 55 ms
66,048 KB
testcase_12 AC 78 ms
87,296 KB
testcase_13 AC 103 ms
105,856 KB
testcase_14 AC 66 ms
74,112 KB
testcase_15 AC 75 ms
83,328 KB
testcase_16 AC 82 ms
92,544 KB
testcase_17 AC 95 ms
100,224 KB
testcase_18 AC 69 ms
82,432 KB
testcase_19 AC 76 ms
86,016 KB
testcase_20 AC 40 ms
53,376 KB
testcase_21 AC 40 ms
53,248 KB
testcase_22 AC 39 ms
53,376 KB
testcase_23 AC 92 ms
102,656 KB
testcase_24 AC 67 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