結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー tailstails
提出日時 2024-12-08 01:57:27
言語 cLay
(20240714-1)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 6,122 ms
コンパイル使用メモリ 178,004 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-08 01:58:55
合計ジャッジ時間 83,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 TLE -
testcase_03 AC 298 ms
8,320 KB
testcase_04 AC 9 ms
10,624 KB
testcase_05 AC 68 ms
8,448 KB
testcase_06 TLE -
testcase_07 AC 2 ms
8,320 KB
testcase_08 AC 3 ms
10,624 KB
testcase_09 TLE -
testcase_10 AC 354 ms
10,624 KB
testcase_11 AC 1,214 ms
8,320 KB
testcase_12 AC 6 ms
8,320 KB
testcase_13 AC 289 ms
10,624 KB
testcase_14 AC 576 ms
10,624 KB
testcase_15 AC 1,224 ms
8,448 KB
testcase_16 AC 2,535 ms
10,624 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 350 ms
8,448 KB
testcase_20 AC 1,471 ms
10,624 KB
testcase_21 TLE -
testcase_22 AC 825 ms
10,624 KB
testcase_23 TLE -
testcase_24 AC 402 ms
10,624 KB
testcase_25 TLE -
testcase_26 AC 383 ms
6,820 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 737 ms
5,248 KB
testcase_30 TLE -
testcase_31 AC 324 ms
5,248 KB
testcase_32 AC 1,389 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 297 ms
5,248 KB
testcase_35 AC 639 ms
5,248 KB
testcase_36 AC 1,267 ms
5,248 KB
testcase_37 AC 2,635 ms
5,248 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 AC 1 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 3 ms
5,248 KB
testcase_58 AC 1 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 1 ms
5,248 KB
testcase_66 AC 2 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@(h,w,k,m),hw=h*w;
unionFind u('m',hw);
mint().setmod(m);
mint a,z,c[hw+1];
rep(i,hw){
	a+=mint(1)/(i+1);
}
rep(i,hw+1){
	c[i]=mint(i)**k;
}
rep(b,1<<hw){
	u.init();
	rep(j,hw){
		if(b&1<<j){
			if(j%w && b&1<<j-1){
				u(j-1,j);
			}
			if(j>=w && b&1<<j-w){
				u(j-w,j);
			}
		}
	}
	rep(j,hw){
		if(b&1<<j){
			if(u(j)==j){
				z+=c[u.size(j)];
			}
		}
	}
}
wt(a*z/mint(2)**hw);
0