結果
問題 | No.486 3 Straight Win(3連勝) |
ユーザー | r_dream0 |
提出日時 | 2017-02-24 22:22:58 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 88 ms / 2,000 ms |
コード長 | 161 bytes |
コンパイル時間 | 42 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-06-26 03:50:32 |
合計ジャッジ時間 | 3,309 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
コンパイルメッセージ
Syntax OK
ソースコード
s = gets.chomp e = s.index("OOO") w = s.index("XXX") if !e && !w puts "NA" elsif !e puts "West" elsif !w puts "East" else puts e < w ? "East": "West" end