結果

問題 No.486 3 Straight Win(3連勝)
ユーザー gemmarogemmaro
提出日時 2020-04-09 11:28:13
言語 Elixir
(1.16.2)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 1,303 ms
コンパイル使用メモリ 63,880 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-06-09 23:14:41
合計ジャッジ時間 17,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 554 ms
53,744 KB
testcase_01 AC 513 ms
54,224 KB
testcase_02 AC 516 ms
53,648 KB
testcase_03 AC 538 ms
53,684 KB
testcase_04 AC 528 ms
53,440 KB
testcase_05 AC 515 ms
53,796 KB
testcase_06 AC 523 ms
53,812 KB
testcase_07 AC 513 ms
53,552 KB
testcase_08 AC 516 ms
53,552 KB
testcase_09 AC 515 ms
53,904 KB
testcase_10 AC 539 ms
53,812 KB
testcase_11 AC 511 ms
53,672 KB
testcase_12 AC 523 ms
53,680 KB
testcase_13 AC 519 ms
53,628 KB
testcase_14 AC 533 ms
53,696 KB
testcase_15 AC 517 ms
53,660 KB
testcase_16 AC 526 ms
53,904 KB
testcase_17 AC 521 ms
53,824 KB
testcase_18 AC 546 ms
54,004 KB
testcase_19 AC 518 ms
53,800 KB
testcase_20 AC 519 ms
53,680 KB
testcase_21 AC 519 ms
53,592 KB
testcase_22 AC 523 ms
53,676 KB
testcase_23 AC 520 ms
53,560 KB
testcase_24 AC 528 ms
53,420 KB
testcase_25 AC 546 ms
53,748 KB
testcase_26 AC 532 ms
53,864 KB
testcase_27 AC 533 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> (fn s ->
          case Regex.run(~r/(OOO|XXX)/, s) do
            nil -> "NA"
            ["OOO", _] -> "East"
            _ -> "West"
          end
        end).()
    |> IO.puts()
  end
end
0