結果

問題 No.206 数の積集合を求めるクエリ
ユーザー umezoumezo
提出日時 2021-12-11 02:37:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 152 ms / 7,000 ms
コード長 545 bytes
コンパイル時間 4,319 ms
コンパイル使用メモリ 268,568 KB
実行使用メモリ 7,308 KB
最終ジャッジ日時 2024-07-19 01:52:53
合計ジャッジ時間 8,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 36 ms
7,308 KB
testcase_18 AC 27 ms
7,308 KB
testcase_19 AC 32 ms
7,184 KB
testcase_20 AC 28 ms
7,308 KB
testcase_21 AC 29 ms
7,176 KB
testcase_22 AC 29 ms
7,308 KB
testcase_23 AC 34 ms
7,308 KB
testcase_24 AC 152 ms
7,180 KB
testcase_25 AC 152 ms
7,180 KB
testcase_26 AC 141 ms
7,180 KB
testcase_27 AC 111 ms
7,176 KB
testcase_28 AC 145 ms
7,304 KB
testcase_29 AC 151 ms
7,308 KB
testcase_30 AC 143 ms
7,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int l,m,n;
  cin>>l>>m>>n;
  vector<int> A(n+1),B(n+1);
  rep(i,l){
    int a;
    cin>>a;
    A[a]=1;
  }
  rep(i,m){
    int b;
    cin>>b;
    B[n+1-b]=1;
  }
  int q;
  cin>>q;
  vector<int> C=convolution(A,B);
  for(int i=n+1;i<=n+q;i++) cout<<C[i]<<endl;

  return 0;
}
0