結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | zazaboon |
提出日時 | 2017-01-29 14:24:26 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 71 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-06-06 09:01:21 |
合計ジャッジ時間 | 1,621 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
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) p i if((i+1) != a.size) a[i + 1] += 2 else a.push(2) break end end i += 1 end p a a.reverse! a.each do |d| if(d >= 2) print "hamu" else print "ham" end end puts ""