結果

問題 No.486 3 Straight Win(3連勝)
ユーザー cielciel
提出日時 2017-02-27 02:27:20
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 106 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 11,588 KB
実行使用メモリ 15,428 KB
最終ジャッジ日時 2023-09-02 10:21:22
合計ジャッジ時間 3,721 ms
ジャッジサーバーID
(参考情報)
judge16 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
15,332 KB
testcase_01 AC 87 ms
15,052 KB
testcase_02 AC 84 ms
15,284 KB
testcase_03 AC 82 ms
15,160 KB
testcase_04 AC 82 ms
15,168 KB
testcase_05 AC 82 ms
15,220 KB
testcase_06 AC 82 ms
15,052 KB
testcase_07 AC 82 ms
15,164 KB
testcase_08 AC 83 ms
15,224 KB
testcase_09 AC 82 ms
15,160 KB
testcase_10 AC 83 ms
15,184 KB
testcase_11 AC 83 ms
15,164 KB
testcase_12 AC 82 ms
15,352 KB
testcase_13 AC 82 ms
15,096 KB
testcase_14 WA -
testcase_15 AC 81 ms
15,292 KB
testcase_16 AC 82 ms
15,280 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 81 ms
15,164 KB
testcase_20 AC 83 ms
15,364 KB
testcase_21 WA -
testcase_22 AC 82 ms
15,268 KB
testcase_23 AC 81 ms
15,244 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets.chomp.bytes.chunk{|e|e}.each{|k,v|
	if v.size>2
		puts k==79 ? :East : :West
		exit
	end
}
puts :Draw
0