結果

問題 No.2946 Puyo
ユーザー tailstails
提出日時 2024-10-25 21:51:48
言語 cLay
(20240714-1)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 3,013 ms
コンパイル使用メモリ 175,612 KB
実行使用メモリ 13,032 KB
最終ジャッジ日時 2024-10-25 21:51:55
合計ジャッジ時間 6,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,344 KB
testcase_01 AC 4 ms
9,428 KB
testcase_02 AC 3 ms
9,408 KB
testcase_03 AC 16 ms
11,416 KB
testcase_04 AC 16 ms
10,332 KB
testcase_05 AC 16 ms
10,360 KB
testcase_06 AC 16 ms
11,440 KB
testcase_07 AC 16 ms
11,452 KB
testcase_08 AC 5 ms
9,476 KB
testcase_09 AC 16 ms
10,088 KB
testcase_10 AC 5 ms
9,500 KB
testcase_11 AC 10 ms
10,480 KB
testcase_12 AC 5 ms
9,444 KB
testcase_13 AC 4 ms
11,448 KB
testcase_14 AC 6 ms
9,512 KB
testcase_15 AC 5 ms
9,548 KB
testcase_16 AC 7 ms
9,544 KB
testcase_17 AC 13 ms
10,628 KB
testcase_18 AC 4 ms
7,464 KB
testcase_19 AC 10 ms
8,088 KB
testcase_20 AC 12 ms
9,896 KB
testcase_21 AC 18 ms
8,676 KB
testcase_22 AC 6 ms
9,448 KB
testcase_23 AC 13 ms
9,980 KB
testcase_24 AC 23 ms
9,304 KB
testcase_25 AC 21 ms
10,728 KB
testcase_26 AC 23 ms
10,716 KB
testcase_27 AC 5 ms
9,396 KB
testcase_28 AC 13 ms
8,844 KB
testcase_29 AC 18 ms
10,748 KB
testcase_30 AC 12 ms
10,252 KB
testcase_31 AC 14 ms
10,484 KB
testcase_32 AC 15 ms
9,088 KB
testcase_33 AC 13 ms
8,780 KB
testcase_34 AC 18 ms
9,520 KB
testcase_35 AC 16 ms
9,140 KB
testcase_36 AC 16 ms
11,256 KB
testcase_37 AC 18 ms
13,032 KB
testcase_38 AC 12 ms
8,816 KB
testcase_39 AC 11 ms
8,692 KB
testcase_40 AC 8 ms
8,204 KB
testcase_41 AC 14 ms
10,732 KB
testcase_42 AC 14 ms
10,408 KB
testcase_43 AC 13 ms
12,628 KB
testcase_44 AC 15 ms
10,684 KB
testcase_45 AC 14 ms
8,832 KB
testcase_46 AC 9 ms
10,100 KB
testcase_47 AC 13 ms
8,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

unionFind u('m',1d6,1);
ll@h,@w;
string@g[h];
rep(y,h){
	rep(x,w){
		if(y&&g[y-1][x]==g[y][x])u(y*w+x,(y-1)*w+x);
		if(x&&g[y][x-1]==g[y][x])u(y*w+x,y*w+(x-1));
	}
}
rep(y,h){
	rep(x,w){
		wtN(u.size(y*w+x)<4?g[y][x]:'.');
	}
	wt("");
}
0