結果

問題 No.723 2つの数の和
ユーザー ysys
提出日時 2018-08-12 10:22:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,476 KB
最終ジャッジ日時 2024-09-23 06:50:39
合計ジャッジ時間 4,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
31,480 KB
testcase_01 AC 121 ms
31,364 KB
testcase_02 AC 118 ms
31,380 KB
testcase_03 AC 160 ms
23,740 KB
testcase_04 AC 184 ms
23,888 KB
testcase_05 AC 180 ms
24,000 KB
testcase_06 AC 183 ms
24,980 KB
testcase_07 AC 144 ms
22,000 KB
testcase_08 AC 141 ms
23,468 KB
testcase_09 AC 189 ms
24,512 KB
testcase_10 AC 128 ms
22,016 KB
testcase_11 AC 110 ms
21,112 KB
testcase_12 AC 149 ms
22,564 KB
testcase_13 AC 192 ms
33,792 KB
testcase_14 AC 142 ms
31,920 KB
testcase_15 AC 148 ms
32,332 KB
testcase_16 AC 168 ms
32,896 KB
testcase_17 AC 176 ms
33,384 KB
testcase_18 AC 161 ms
33,256 KB
testcase_19 AC 176 ms
36,476 KB
testcase_20 AC 117 ms
31,484 KB
testcase_21 AC 117 ms
31,432 KB
testcase_22 AC 118 ms
31,444 KB
testcase_23 AC 149 ms
24,448 KB
testcase_24 AC 136 ms
32,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n, x = map(int, input().split())
a = list(map(int, input().split()))
dic = defaultdict(int)

for i in range(n):
    dic[a[i]] += 1

num = 0
for i in range(100005):
    num += dic[i] * dic[x - i]

print(num)
0