結果

問題 No.1129 Rating じゃんけん
ユーザー penqenpenqen
提出日時 2020-12-16 12:13:45
言語 Elixir
(1.16.2)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 1,143 ms
コンパイル使用メモリ 63,568 KB
実行使用メモリ 55,088 KB
最終ジャッジ日時 2024-06-10 00:17:27
合計ジャッジ時間 12,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 539 ms
54,476 KB
testcase_01 AC 530 ms
54,248 KB
testcase_02 AC 548 ms
54,336 KB
testcase_03 AC 517 ms
54,108 KB
testcase_04 AC 524 ms
53,680 KB
testcase_05 AC 521 ms
54,880 KB
testcase_06 AC 536 ms
55,088 KB
testcase_07 AC 543 ms
53,984 KB
testcase_08 AC 540 ms
54,120 KB
testcase_09 AC 539 ms
53,700 KB
testcase_10 AC 525 ms
54,184 KB
testcase_11 AC 523 ms
53,732 KB
testcase_12 AC 523 ms
54,128 KB
testcase_13 AC 542 ms
54,004 KB
testcase_14 AC 544 ms
54,200 KB
testcase_15 AC 543 ms
54,128 KB
testcase_16 AC 532 ms
55,072 KB
testcase_17 AC 532 ms
53,868 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: this clause for solve/4 cannot match because a previous clause at line 11 always matches
    │
 13 │   def solve(_, _, _, _), do: :error
    │   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    │
    └─ Main.exs:13

ソースコード

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 solve(_, _, _, _), do: :error

  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