結果

問題 No.423 ハムスター語初級(数詞)
ユーザー zazaboonzazaboon
提出日時 2017-01-29 14:19:18
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-06 09:01:18
合計ジャッジ時間 1,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,288 KB
testcase_01 AC 98 ms
12,160 KB
testcase_02 WA -
testcase_03 AC 95 ms
12,416 KB
testcase_04 WA -
testcase_05 AC 93 ms
12,160 KB
testcase_06 WA -
testcase_07 AC 100 ms
12,288 KB
testcase_08 AC 96 ms
12,160 KB
testcase_09 AC 95 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.chomp
i = 0
a = []
while(i < s.size)
    if(i+3 < s.size and ((s[i..i+3]) == "hamu"))
        i += 4
        a.push(1)
    else
        i += 3
        a.push(0)
    end
end
a.reverse!
i = 0
while(i < a.size)
    if(a[i]%2 == 1)
        if((i+1) != a.size)
            a[i + 1] += 2
        else
            a.push(2)
            a[i] %= 2
            break
        end
    end
    i += 1
end
a.reverse!
a.each do |d|
    if(d >= 2)
        print "hamu"
    else
        print "ham"
    end
end
puts ""
0