結果
問題 | No.380 悪の台本 |
ユーザー | DoG_peer |
提出日時 | 2016-06-18 00:01:51 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,052 bytes |
コンパイル時間 | 412 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 21,504 KB |
最終ジャッジ日時 | 2024-11-06 22:47:50 |
合計ジャッジ時間 | 2,259 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
12,416 KB |
testcase_01 | WA | - |
testcase_02 | AC | 94 ms
12,160 KB |
testcase_03 | AC | 89 ms
12,160 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 206 ms
21,504 KB |
testcase_08 | AC | 93 ms
12,032 KB |
testcase_09 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
lines = readlines def correct puts "CORRECT (maybe)" end def wrong puts "WRONG!" end lines.each do |l| items = l.split name = items[0] if items.length <= 1 wrong next end word = items[1..(-1)].join(" ").downcase last_word = items[-1].downcase case name when "digi" if word =~ /nyo$/ correct elsif last_word =~ /nyo(.{,3})$/ && $1.gsub("_","") =~ /^\W*$/ correct else wrong end when "petit" if word =~ /nyu$/ correct elsif last_word =~ /nyu(.{,3})$/ && $1.gsub("_","") =~ /^\W*$/ correct else wrong end when "rabi" word.gsub!("_","") if word =~ /\w/ correct else wrong end when "gema" if word =~ /gema$/ correct elsif last_word =~ /gema(.{,3})$/ && $1.gsub("_","") =~ /^\W+$/ correct else wrong end when "piyo" if word =~ /pyo$/ correct elsif last_word =~ /pyo(.{,3})$/ && $1.gsub("_","") =~ /^\W+$/ correct else wrong end else wrong end end