結果

問題 No.755 Zero-Sum Rectangle
ユーザー cielciel
提出日時 2020-08-14 01:28:57
言語 Crystal
(1.11.2)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 11,723 ms
コンパイル使用メモリ 296,492 KB
実行使用メモリ 9,888 KB
最終ジャッジ日時 2024-06-30 20:56:34
合計ジャッジ時間 20,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,888 KB
testcase_01 AC 466 ms
6,816 KB
testcase_02 AC 342 ms
6,940 KB
testcase_03 AC 476 ms
6,944 KB
testcase_04 AC 534 ms
6,944 KB
testcase_05 AC 557 ms
6,940 KB
testcase_06 AC 360 ms
6,944 KB
testcase_07 AC 346 ms
6,944 KB
testcase_08 AC 464 ms
6,944 KB
testcase_09 AC 521 ms
6,940 KB
testcase_10 AC 588 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
evil_1 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C;fun strtoll(s: UInt8*,p: UInt8*,b: Int32): Int64;end
n,m=gets.not_nil!.split.map &.to_i
a=[[0_i64]*-~m]
a+=m.times.map{[0_i64]+gets.not_nil!.split.map{|e|C.strtoll(e,nil,10)}.to_a}.to_a
(m+1).times{|y|m.times{|x|a[y][x+1]+=a[y][x]}}
(m+1).times{|x|m.times{|y|a[y+1][x]+=a[y][x]}}
n.times{
	r=0
	x,y=gets.not_nil!.split.map(&.to_i)
	(0...x).each{|x0|(x..m).each{|x1|
	(0...y).each{|y0|(y..m).each{|y1|
		r+=1 if a[x0][y0]-a[x1][y0]-a[x0][y1]+a[x1][y1]==0
	}}}}
	p r
}
0