結果
問題 | No.1102 Remnants |
ユーザー | vjudge1 |
提出日時 | 2024-11-17 10:10:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 657 bytes |
コンパイル時間 | 315 ms |
コンパイル使用メモリ | 45,696 KB |
実行使用メモリ | 7,876 KB |
最終ジャッジ日時 | 2024-11-17 10:10:50 |
合計ジャッジ時間 | 2,038 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 3 ms
7,240 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
7,112 KB |
testcase_04 | AC | 2 ms
7,112 KB |
testcase_05 | AC | 9 ms
7,692 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include<cstdio> #include<algorithm> using namespace std; const int N=5e5+5; const int mod=998244353; int n,m,a[N],f[N],inv[N]; int read() { int res,f=1; char ch; while((ch=getchar())<'0'||ch>'9') if(ch=='-') f=-1; res=ch^48; while((ch=getchar())>='0'&&ch<='9') res=(res<<1)+(res<<3)+(ch^48); return res*f; } int main() { // freopen("ex_a4.in","r",stdin); int i,ans=0; n=read();m=read(); for(i=1;i<=n;i++) a[i]=read(); f[1]=1;inv[1]=1; for(i=2;i<=n;i++) { inv[i]=1ll*(mod-mod/i)*inv[mod%i]%mod; f[i]=1ll*f[i-1]*(m+i-1)%mod*inv[i-1]%mod; } for(i=1;i<=n;i++) ans=(ans+1ll*a[i]*f[i]%mod*f[n+1-i]%mod)%mod; printf("%d",ans); return 0; }