結果
問題 | No.380 悪の台本 |
ユーザー | DoG_peer |
提出日時 | 2016-06-17 22:59:25 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 931 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 18,688 KB |
最終ジャッジ日時 | 2024-11-06 22:39:06 |
合計ジャッジ時間 | 1,736 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - ines Syntax OK
ソースコード
ines = readlines def correct puts "CORRECT (maybe)" end def wrong puts "WRONG!" end lines.each do |l| items = l.split name = items[0] word = items[1..(-1)].join(" ").downcase case name when "digi" if word =~ /nyo$/ correct elsif word =~ /nyo(.{,3})$/ && $1.gsub("_","") !~ /^\w*$/ correct else wrong end when "petit" if word =~ /nyu$/ correct elsif word =~ /nyu(.{,3})$/ && $1.gsub("_","") !~ /^\w*$/ correct else wrong end when "rabi" if word =~ /(_|\W)/ correct else wrong end when "gema" if word =~ /gema$/ correct elsif word =~ /gema(.{,3})$/ && $1.gsub("_","") !~ /^\w*$/ correct else wrong end when "piyo" if word =~ /pyo$/ correct elsif word =~ /pyo(.{,3})$/ && $1.gsub("_","") !~ /^\w*$/ correct else wrong end else wrong end end