結果

問題 No.380 悪の台本
ユーザー simansiman
提出日時 2022-07-21 13:26:36
言語 Ruby
(3.4.1)
結果
AC  
実行時間 232 ms / 1,000 ms
コード長 567 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-02 17:42:01
合計ジャッジ時間 1,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 91 ms
12,416 KB
testcase_05 AC 108 ms
12,416 KB
testcase_06 AC 105 ms
12,288 KB
testcase_07 AC 232 ms
12,288 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 94 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def parse(str)
  return false if str[0] == ' '

  name, *words = str.split
  words = words.join(' ').downcase

  case name
  when "digi"
    return true if words =~ /nyo[^a-zA-Z0-9]{0,3}$/
  when "petit"
    return true if words =~ /nyu[^a-zA-Z0-9]{0,3}$/
  when "rabi"
    return true if words =~ /[a-zA-Z0-9]/
  when "gema"
    return true if words =~ /gema[^a-zA-Z0-9]{0,3}$/
  when "piyo"
    return true if words =~ /pyo[^a-zA-Z0-9]{0,3}$/
  end

  false
end

while row = gets&.chomp
  if parse(row)
    puts "CORRECT (maybe)"
  else
    puts "WRONG!"
  end
end
0