結果

問題 No.723 2つの数の和
ユーザー bluebery1001bluebery1001
提出日時 2024-02-20 13:06:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 4,254 ms
コンパイル使用メモリ 278,192 KB
実行使用メモリ 21,360 KB
最終ジャッジ日時 2024-09-29 03:42:37
合計ジャッジ時間 6,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 60 ms
7,596 KB
testcase_04 AC 180 ms
15,096 KB
testcase_05 AC 185 ms
19,300 KB
testcase_06 AC 65 ms
8,012 KB
testcase_07 AC 47 ms
6,816 KB
testcase_08 AC 52 ms
7,500 KB
testcase_09 AC 45 ms
6,820 KB
testcase_10 AC 96 ms
13,676 KB
testcase_11 AC 43 ms
7,864 KB
testcase_12 AC 34 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 16 ms
6,820 KB
testcase_19 AC 197 ms
21,360 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 111 ms
12,324 KB
testcase_24 AC 176 ms
20,280 KB
権限があれば一括ダウンロードができます

ソースコード

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;
	if(x>1000000){
		cout<<0<<endl;
		return 0;
	}
	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