結果

問題 No.1893 Cycle
ユーザー noriocnorioc
提出日時 2024-08-13 00:29:06
言語 Elixir
(1.16.2)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 62,252 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-08-13 00:29:25
合計ジャッジ時間 17,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
53,668 KB
testcase_01 AC 561 ms
53,972 KB
testcase_02 AC 602 ms
53,800 KB
testcase_03 AC 571 ms
53,804 KB
testcase_04 AC 560 ms
53,748 KB
testcase_05 AC 620 ms
53,672 KB
testcase_06 AC 589 ms
53,800 KB
testcase_07 AC 597 ms
53,368 KB
testcase_08 AC 564 ms
54,028 KB
testcase_09 AC 608 ms
54,000 KB
testcase_10 AC 642 ms
53,544 KB
testcase_11 AC 579 ms
54,276 KB
testcase_12 AC 571 ms
53,500 KB
testcase_13 AC 568 ms
53,756 KB
testcase_14 AC 586 ms
53,936 KB
testcase_15 AC 558 ms
53,936 KB
testcase_16 AC 598 ms
53,924 KB
testcase_17 AC 583 ms
53,796 KB
testcase_18 AC 602 ms
53,872 KB
testcase_19 AC 583 ms
53,808 KB
testcase_20 AC 626 ms
53,764 KB
testcase_21 AC 577 ms
54,124 KB
testcase_22 AC 599 ms
53,928 KB
testcase_23 AC 576 ms
53,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    [x, y] = li()

    d = abs(x-y)
    z = rem(max(x, y) + d, 12)
    IO.puts z
  end
end
0