結果

問題 No.1141 田グリッド
ユーザー tailstails
提出日時 2020-07-31 22:06:17
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 382 bytes
コンパイル時間 2,712 ms
コンパイル使用メモリ 177,636 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-05 13:47:04
合計ジャッジ時間 5,099 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 28 ms
6,144 KB
testcase_14 AC 31 ms
6,144 KB
testcase_15 AC 30 ms
6,144 KB
testcase_16 AC 31 ms
6,144 KB
testcase_17 AC 29 ms
6,016 KB
testcase_18 AC 7 ms
5,504 KB
testcase_19 AC 7 ms
5,760 KB
testcase_20 AC 7 ms
5,760 KB
testcase_21 AC 30 ms
6,144 KB
testcase_22 AC 30 ms
6,144 KB
testcase_23 AC 30 ms
6,144 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

ll h,w,q,x,y,xx=-1,yy=-1;
Mint a[1d5],b[1d5],c[1d5],d=1,t;
{
	rd(h,w,a(h*w),q);
	b[0..h-1]=1;
	c[0..w-1]=1;
	rep(y,h)rep(x,w){
		t=a[x+w*y];
		if(t){
			(b[y],c[x],d)*=a[x+w*y];
		}else{
			a[x+w*y]=1;
			xx=xx==x||xx==-1?x:-2;
			yy=yy==y||yy==-1?y:-2;
		}
	}
	rep(q){
		rd(y--,x--);
		if((xx==x||xx==-1)&&(yy==y||yy==-1)){
			wt(d*a[x+w*y]/b[y]/c[x]);
		}else{
			wt(0);
		}
	}
}
0