結果
問題 | No.380 悪の台本 |
ユーザー | ldsyb |
提出日時 | 2016-06-17 23:25:25 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 744 bytes |
コンパイル時間 | 46 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-11-06 22:41:23 |
合計ジャッジ時間 | 1,829 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
while s = gets.split(' ') case s[0] when "digi" if s[s.size - 1] =~ /.*nyo[\W_]{0,3}/i puts "CORRECT (maybe)" else puts "WRONG!" end when "petit" if s[s.size - 1] =~ /.*nyu[\W_]{0,3}/i puts "CORRECT (maybe)" else puts "WRONG!" end when "rabi" f = false (1...s.size).each do |i| f = true if s[i] =~ /.*[\W_]+.*/ end if f puts "CORRECT (maybe)" else puts "WRONG!" end when "gema" f = true (1...s.size).each do |i| f = false if s[i] =~ /.*gema[\W_]{0,3}/i end if f puts "CORRECT (maybe)" else puts "WRONG!" end else f = true (1...s.size).each do |i| f = false if s[i] =~ /.*piyo[\W_]{0,3}/i end if f puts "CORRECT (maybe)" else puts "WRONG!" end end end