結果

問題 No.723 2つの数の和
ユーザー YamadaYamada
提出日時 2019-01-13 03:01:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 184 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,488 KB
最終ジャッジ日時 2024-06-06 09:35:50
合計ジャッジ時間 3,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
20,812 KB
testcase_01 AC 46 ms
21,200 KB
testcase_02 AC 44 ms
21,072 KB
testcase_03 AC 106 ms
24,740 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 124 ms
25,284 KB
testcase_07 AC 79 ms
22,648 KB
testcase_08 AC 87 ms
23,776 KB
testcase_09 AC 114 ms
25,428 KB
testcase_10 RE -
testcase_11 AC 66 ms
21,592 KB
testcase_12 AC 90 ms
23,600 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 82 ms
22,732 KB
testcase_19 RE -
testcase_20 AC 46 ms
20,944 KB
testcase_21 AC 45 ms
21,200 KB
testcase_22 AC 45 ms
21,192 KB
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X =map(int,input().split())
l =[int(i) for i in input().split()]
d ={i:0 for i in range(10**5+1)}
n = 0
for i in l:
    d[i] += 1
for i in range(X+1):
    n += d[i] * d[X-i]
print(n)
0