結果

問題 No.1129 Rating じゃんけん
ユーザー penqenpenqen
提出日時 2020-12-16 12:15:20
言語 Elixir
(1.16.2)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 1,125 ms
コンパイル使用メモリ 62,940 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-06-10 00:16:54
合計ジャッジ時間 14,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
53,852 KB
testcase_01 AC 618 ms
53,780 KB
testcase_02 AC 622 ms
54,132 KB
testcase_03 AC 643 ms
54,000 KB
testcase_04 AC 646 ms
54,320 KB
testcase_05 AC 624 ms
54,140 KB
testcase_06 AC 649 ms
53,848 KB
testcase_07 AC 647 ms
54,212 KB
testcase_08 AC 641 ms
54,128 KB
testcase_09 AC 636 ms
53,868 KB
testcase_10 AC 631 ms
54,120 KB
testcase_11 AC 640 ms
54,476 KB
testcase_12 AC 635 ms
54,000 KB
testcase_13 AC 639 ms
54,268 KB
testcase_14 AC 645 ms
53,868 KB
testcase_15 AC 646 ms
53,860 KB
testcase_16 AC 636 ms
54,268 KB
testcase_17 AC 636 ms
54,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  
  def main do
    [a, b, c, d] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    solve(a, b, c, d) |> IO.puts()
  end

  def solve(a, _b, c, _d) when a < c, do: "tRue"
  def solve(a, _b, c, _d) when c < a, do: "null"
  def solve(_a, b, _c, d) when b == d, do: "Draw" 
  def solve(_a, b, _c, d), do: fight(b, d)

  def fight(0, 1), do: "null"
  def fight(0, 2), do: "tRue"
  def fight(1, 0), do: "tRue"
  def fight(1, 2), do: "null"
  def fight(2, 0), do: "null"
  def fight(2, 1), do: "tRue"

end
0