結果

問題 No.723 2つの数の和
ユーザー bluebery1001bluebery1001
提出日時 2024-02-20 13:03:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 294 bytes
コンパイル時間 4,002 ms
コンパイル使用メモリ 277,896 KB
実行使用メモリ 440,704 KB
最終ジャッジ日時 2024-09-29 03:42:30
合計ジャッジ時間 9,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 58 ms
7,680 KB
testcase_04 AC 181 ms
14,964 KB
testcase_05 AC 188 ms
19,208 KB
testcase_06 AC 62 ms
8,136 KB
testcase_07 AC 47 ms
6,816 KB
testcase_08 AC 52 ms
7,504 KB
testcase_09 AC 45 ms
6,820 KB
testcase_10 AC 94 ms
13,676 KB
testcase_11 AC 43 ms
7,864 KB
testcase_12 AC 35 ms
6,820 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/convolution>
using namespace atcoder;
typedef long long ll;
int main(){
	ll n,x;cin >> n >> x;
	vector<ll>cnt(x+1);
	for(;n--;){
		ll a;cin >> a;
		if(a<=x)cnt[a]++;
	}
	auto ret = convolution_ll(cnt,cnt);
	cout << ret[x] << endl;
}
0