結果

問題 No.1068 #いろいろな色 / Red and Blue and more various colors (Hard)
ユーザー FF256grhyFF256grhy
提出日時 2022-01-29 12:55:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,318 ms / 3,500 ms
コード長 265 bytes
コンパイル時間 4,644 ms
コンパイル使用メモリ 273,888 KB
実行使用メモリ 32,508 KB
最終ジャッジ日時 2024-06-10 10:48:20
合計ジャッジ時間 33,304 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
17,760 KB
testcase_01 AC 282 ms
17,644 KB
testcase_02 AC 282 ms
17,636 KB
testcase_03 AC 297 ms
17,828 KB
testcase_04 AC 290 ms
17,784 KB
testcase_05 AC 293 ms
17,844 KB
testcase_06 AC 292 ms
17,812 KB
testcase_07 AC 289 ms
17,788 KB
testcase_08 AC 290 ms
17,712 KB
testcase_09 AC 291 ms
17,792 KB
testcase_10 AC 287 ms
17,768 KB
testcase_11 AC 287 ms
17,596 KB
testcase_12 AC 285 ms
17,708 KB
testcase_13 AC 1,192 ms
32,376 KB
testcase_14 AC 1,188 ms
32,500 KB
testcase_15 AC 1,189 ms
32,380 KB
testcase_16 AC 1,318 ms
32,372 KB
testcase_17 AC 1,192 ms
32,372 KB
testcase_18 AC 1,192 ms
32,504 KB
testcase_19 AC 1,198 ms
32,380 KB
testcase_20 AC 1,187 ms
32,504 KB
testcase_21 AC 1,188 ms
32,380 KB
testcase_22 AC 1,192 ms
32,504 KB
testcase_23 AC 1,194 ms
32,508 KB
testcase_24 AC 1,191 ms
32,508 KB
testcase_25 AC 1,191 ms
32,376 KB
testcase_26 AC 1,190 ms
32,504 KB
testcase_27 AC 1,190 ms
32,376 KB
testcase_28 AC 1,200 ms
32,504 KB
testcase_29 AC 1,138 ms
32,376 KB
testcase_30 AC 1,149 ms
32,504 KB
testcase_31 AC 284 ms
17,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated]
    1 | #import<bits/stdc++.h>
      |  ^~~~~~
main.cpp:2:2: warning: #import is a deprecated GCC extension [-Wdeprecated]
    2 | #import<atcoder/all>
      |  ^~~~~~
main.cpp:4:21: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | using namespace std;main(){long n,q,a;cin>>n>>q;vector v(1<<18,vector{1LL});F(n)cin>>a,v[i]={a-1,1};F(18)F(1<<17)v[i]=atcoder::convolution(v[2*i],v[2*i+1]);F(q)cin>>a,cout<<v[0][a]<<"\n";}
      |                     ^~~~

ソースコード

diff #

#import<bits/stdc++.h>
#import<atcoder/all>
#define F(n)for(int i=0;i<n;i++)
using namespace std;main(){long n,q,a;cin>>n>>q;vector v(1<<18,vector{1LL});F(n)cin>>a,v[i]={a-1,1};F(18)F(1<<17)v[i]=atcoder::convolution(v[2*i],v[2*i+1]);F(q)cin>>a,cout<<v[0][a]<<"\n";}
0