結果
問題 | No.388 階段 (1) |
ユーザー | KKT89 |
提出日時 | 2020-12-01 15:13:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 342 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 69,988 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 03:00:14 |
合計ジャッジ時間 | 3,353 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
コンパイルメッセージ
main.cpp:3:96: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 3 | using namespace std;using l=long long;const l N=1024,M=998244353;l A[N],d[42][N],n,k,m,x,y,a,r;main(){cin>>n>>m>>x>>y;while(m--)cin>>a,k+=(A[a]?0:++A[a]);d[0][0]=1;z(i,n)z(j,N){z(l,N)d[i+1][j^l]+=A[l]*d[i][j];d[i+2][j]-=d[i][j]*(k-(i>0));}z(i,min(N,y+1))r+=(x<=i)*d[n][i];cout<<r%M<<"\n";} | ^~~~
ソースコード
#include "iostream" #define z(i,n)for(l i=0;i<n;i++) using namespace std;using l=long long;const l N=1024,M=998244353;l A[N],d[42][N],n,k,m,x,y,a,r;main(){cin>>n>>m>>x>>y;while(m--)cin>>a,k+=(A[a]?0:++A[a]);d[0][0]=1;z(i,n)z(j,N){z(l,N)d[i+1][j^l]+=A[l]*d[i][j];d[i+2][j]-=d[i][j]*(k-(i>0));}z(i,min(N,y+1))r+=(x<=i)*d[n][i];cout<<r%M<<"\n";}