結果

問題 No.232 めぐるはめぐる (2)
ユーザー cielciel
提出日時 2015-06-27 01:10:56
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-07 19:49:30
合計ジャッジ時間 4,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
12,416 KB
testcase_01 AC 123 ms
12,288 KB
testcase_02 AC 119 ms
12,288 KB
testcase_03 AC 123 ms
12,416 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 78 ms
12,160 KB
testcase_06 AC 76 ms
12,160 KB
testcase_07 AC 75 ms
12,032 KB
testcase_08 AC 111 ms
12,288 KB
testcase_09 AC 75 ms
12,160 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 75 ms
12,160 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 74 ms
12,160 KB
testcase_16 AC 76 ms
12,160 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 73 ms
12,160 KB
testcase_22 WA -
testcase_23 AC 74 ms
12,160 KB
testcase_24 AC 73 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
$lineno=0
def output(s)
	puts s
	$lineno+=1
end
t,a,b=gets.split.map &:to_i
if [a,b].max>t || (t==1 and a==0 and b==0)
	puts :NO
else
	puts :YES
=begin
	if a==0
		if (b-t)%2>0
			output '^'
			output 'v>'
			b-=1
		end
	elsif b==0
		if (a-t)%2>0
			output '>'
			output '<^'
			a-=1
		end
	end

	if (a+b-n)%2>0
		output '^'
		output '>'
		a-=1
		b-=1
		n-=1
	end
=end
	n=[a,b].min
	n.times{
		output '^>'
	}
	a-=n
	b-=n
	a.times{
		output '^'
	}
	b.times{
		output '>'
	}
	((t-$lineno)/2).times{
		output '^'
		output 'v'
	}
end
0