結果

問題 No.971 いたずらっ子
ユーザー tatt61880tatt61880
提出日時 2020-01-17 23:14:01
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 939 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 149,672 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-09-16 10:15:44
合計ジャッジ時間 6,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 395 ms
43,136 KB
testcase_06 AC 311 ms
34,304 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var ss: [][]char :: cui@input().split(" ")
	var H: int :: ss[0].toInt(&)
	var W: int :: ss[1].toInt(&)
	var m: [][]char :: #[H, W]char
	var mp: [][]int :: #[H, W]int
	
	for h(0, H - 1)
		for w(0, W - 1)
			var x0: int :: w
			var y0: int :: h
			var v0: int :: mp[y0][x0]
			;do cui@print("\{x0} \{y0}\n")
			var dx: []int :: [0, 1]
			var dy: []int :: [1, 0]
			for i(0, 1)
				var x: int :: x0 + dx[i]
				var y: int :: y0 + dy[i]
				if(x = W | y = H)
					skip i
				end if
				var v: int :: v0 + 1 + ((m[y][x] = 'k') ?(x + y, 0))
				if(mp[y][x] = 0)
					do mp[y][x] :: v
				elif(v < mp[y][x])
					do mp[y][x] :: v
				end if
				;do cui@print("(\{x0}, \{y0})→(\{x}, \{y}) \{v}→\{mp[y][x]}\n")
			end for
		end for
	end for
	{
		for h(0, H - 1)
			for w(0, W - 1)
				do cui@print("\{mp[h][w]}\t")
			end for
			do cui@print("\n")
		end for
	}
	
	var ans: int :: mp[H - 1][W - 1]
	do cui@print("\{ans}\n")
end func
0