結果

問題 No.2048 L(I+D)S
ユーザー vjudge1vjudge1
提出日時 2024-12-31 21:21:37
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 160,200 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 21:21:40
合計ジャッジ時間 2,727 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 16 ms
6,816 KB
testcase_09 AC 7 ms
6,816 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 18 ms
6,816 KB
testcase_12 AC 10 ms
6,816 KB
testcase_13 AC 6 ms
6,820 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 18 ms
6,820 KB
testcase_17 AC 19 ms
6,820 KB
testcase_18 AC 20 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ri register
#define pii pair<int,int>
#define F first
#define S second
#define pb push_back
const int inf=0x3f3f3f3f;
inline int rd(){
	int x=0,y=1;char c=getchar();
	for(;c<'0'||c>'9';c=getchar())if(c=='-')y=-1;
	for(;c>='0'&&c<='9';c=getchar())x=(x<<1)+(x<<3)+(c^48);
	return x*y;
}
const int mod=998244353,N=2e5+5;
int ans,n,fac[N];
int ksm(int x,int y){
	int res=1;
	for(;y;y>>=1,x=x*x%mod)if(y&1)res=res*x%mod;
	return res;
}
int sq(int x){
	return x*x%mod;
}
signed main(){
	n=rd();fac[0]=1;
	for(int i=1;i<=n;i++)fac[i]=fac[i-1]*i%mod;
	for(int i=2;i<=n-2;i++)
		ans=(ans+sq(fac[n]*ksm(fac[n-i-2]*fac[i-2]%mod*i%mod*(n-i)%mod*(n-1)%mod,mod-2)%mod))%mod;
	cout<<ans<<'\n';
	return 0;
}
0