結果
問題 | No.707 書道 |
ユーザー | yamagh |
提出日時 | 2018-07-31 20:04:07 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 723 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-09-19 16:37:33 |
合計ジャッジ時間 | 1,976 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 78 ms
12,032 KB |
testcase_01 | AC | 76 ms
12,160 KB |
testcase_02 | AC | 107 ms
12,416 KB |
testcase_03 | AC | 78 ms
12,032 KB |
testcase_04 | WA | - |
testcase_05 | AC | 144 ms
13,952 KB |
testcase_06 | AC | 178 ms
14,208 KB |
testcase_07 | AC | 212 ms
14,080 KB |
testcase_08 | AC | 81 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
H,W = gets.split.map{|m|m.to_i} P = $<.read.split("\n").map{|m|m.split('').map{|n|n.to_i}} #H,W,P = 1,1,[1] #puts "#{H} #{W}" #P.each{|e|p e} #puts '---' memo = Array.new(H+2).map{Array.new(W+2, 0.0)} #memo.each{|e|p e} for y in 0..H+1 for x in 0..W+1 next if [*1..H].include?(y) and [*1..W].include?(x) #puts "x,y = #{x},#{y}" for k in 0..H-1 for j in 0..W-1 next if P[k][j] == 0 #puts "j,k = #{j+1},#{k+1}" a = Math.sqrt( (x-(j+1))**2 + (y-(k+1))**2 ) memo[y][x] += a #puts "memo[#{y}][#{x}] += Math.sqrt( (#{x}-#{j+1})**2 + (#{y}-#{k+1})**2 ) = #{a}" end end #puts '' end end #puts '---' #memo.each{|e|p e} puts memo.flatten.sort.uniq[1]