結果

問題 No.723 2つの数の和
ユーザー YamadaYamada
提出日時 2019-01-13 03:01:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 184 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,600 KB
最終ジャッジ日時 2024-12-23 23:52:46
合計ジャッジ時間 2,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
21,128 KB
testcase_01 AC 45 ms
21,080 KB
testcase_02 AC 47 ms
21,064 KB
testcase_03 AC 101 ms
24,804 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 115 ms
25,268 KB
testcase_07 AC 78 ms
23,004 KB
testcase_08 AC 87 ms
23,668 KB
testcase_09 AC 109 ms
25,464 KB
testcase_10 RE -
testcase_11 AC 63 ms
21,664 KB
testcase_12 AC 89 ms
23,648 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 80 ms
23,016 KB
testcase_19 RE -
testcase_20 AC 41 ms
21,128 KB
testcase_21 AC 43 ms
21,280 KB
testcase_22 AC 42 ms
21,252 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