結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー tailstails
提出日時 2021-07-09 22:12:58
言語 cLay
(20240714-1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 4,562 ms
コンパイル使用メモリ 178,992 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-05 15:18:52
合計ジャッジ時間 6,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,400 KB
testcase_01 AC 13 ms
8,832 KB
testcase_02 AC 34 ms
10,240 KB
testcase_03 AC 32 ms
9,344 KB
testcase_04 AC 27 ms
7,680 KB
testcase_05 AC 29 ms
8,704 KB
testcase_06 AC 30 ms
8,960 KB
testcase_07 AC 30 ms
9,216 KB
testcase_08 AC 28 ms
7,936 KB
testcase_09 AC 33 ms
9,984 KB
testcase_10 AC 32 ms
9,856 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,496 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	Comb<Mint>c;
	Mint@n,r;
	ll@m;
	rep(m){
		ll@t;
		Mint@x,@y;
		if(t==1){
			r+=c.C(x+y,x)*c.C((n-x-1)+(n-y),(n-x-1));
		}else{
			r+=c.C(x+y,x)*c.C((n-x)+(n-y-1),(n-x));
		}
	}
	wt(2n*c.C(2n,n)-r);
}
0