結果

問題 No.455 冬の大三角
ユーザー finefine
提出日時 2016-12-06 00:22:17
言語 Ruby
(3.4.1)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-29 21:04:45
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 54
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - w
Syntax OK

ソースコード

diff #

h,w=gets.split.map(&:to_i)
s = $<.map(&:chomp)
flag = false
h.times{|i|
    if flag
        break
    end
    cnt = s[i].count(?*)
    if cnt == 1
        if s[i].index(?*) != 0
            s[i][0] = ?*
        else
            s[i][1] = ?*
        end
        flag = true
    elsif cnt == 2
        if i != 0
            s[0][0] = ?*
        else
            s[1][0] = ?*
        end
        flag = true
    end
    }
h.times{|i|
    puts s[i]
    }
0