結果

問題 No.380 悪の台本
ユーザー yuruhiyayuruhiya
提出日時 2020-10-22 17:05:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 353 ms / 1,000 ms
コード長 463 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-07-21 09:23:11
合計ジャッジ時間 2,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,032 KB
testcase_01 AC 74 ms
12,032 KB
testcase_02 AC 74 ms
12,032 KB
testcase_03 AC 77 ms
12,032 KB
testcase_04 AC 93 ms
12,288 KB
testcase_05 AC 157 ms
12,672 KB
testcase_06 AC 113 ms
12,416 KB
testcase_07 AC 353 ms
12,288 KB
testcase_08 AC 80 ms
19,328 KB
testcase_09 AC 95 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!ruby -n
answer = { true => 'CORRECT (maybe)', false => 'WRONG!' }
characters = %w[digi petit rabi gema piyo]
suffixes = {
	'digi' => 'nyo', 'petit' => 'nyu', 'gema' => 'gema', 'piyo' => 'pyo'
}

$_ =~ /(.+?) (.*)/
character, words = $1, $2

if characters.include?(character)
	if suffixes.key?(character)
		puts answer[words.match?(/.*#{suffixes[character]}[^a-zA-Z0-9]{,3}$/i)]
	else
		puts answer[words.match?(/[a-zA-Z0-9]/)]
	end
else
	puts answer[false]
end
0