結果

問題 No.723 2つの数の和
ユーザー shobonvipshobonvip
提出日時 2022-03-12 14:53:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 104,792 KB
最終ジャッジ日時 2024-09-16 21:33:54
合計ジャッジ時間 3,277 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,708 KB
testcase_01 AC 34 ms
54,100 KB
testcase_02 AC 34 ms
53,796 KB
testcase_03 AC 77 ms
93,664 KB
testcase_04 AC 81 ms
101,628 KB
testcase_05 AC 78 ms
100,012 KB
testcase_06 AC 79 ms
99,572 KB
testcase_07 AC 64 ms
82,316 KB
testcase_08 AC 61 ms
84,680 KB
testcase_09 AC 81 ms
103,516 KB
testcase_10 AC 59 ms
80,284 KB
testcase_11 AC 44 ms
67,060 KB
testcase_12 AC 64 ms
87,544 KB
testcase_13 AC 86 ms
104,792 KB
testcase_14 AC 52 ms
74,592 KB
testcase_15 AC 61 ms
83,728 KB
testcase_16 AC 75 ms
92,492 KB
testcase_17 AC 81 ms
99,224 KB
testcase_18 AC 58 ms
81,440 KB
testcase_19 AC 60 ms
84,296 KB
testcase_20 AC 35 ms
54,100 KB
testcase_21 AC 35 ms
53,472 KB
testcase_22 AC 34 ms
54,172 KB
testcase_23 AC 73 ms
100,176 KB
testcase_24 AC 54 ms
78,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,x = map(int,input().split())
a = list(map(int,input().split()))
b = defaultdict(int)
ans = 0

for i in a:
	b[i] += 1

for i in a:
	ans += b[x-i]

print(ans)
0