結果

問題 No.380 悪の台本
ユーザー ldsybldsyb
提出日時 2016-06-18 00:05:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 753 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-04-24 14:26:08
合計ジャッジ時間 1,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

while s = gets
	s = s.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] =~ /.*[a-zA-Z]+.*/
		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] =~ /.*pyo[\W_]{0,3}/i
		end
		if f
			puts "CORRECT (maybe)"
		else
			puts "WRONG!"
		end
	end
end
0