結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー noriocnorioc
提出日時 2024-07-24 02:36:10
言語 Elixir
(1.16.2)
結果
AC  
実行時間 763 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 1,435 ms
コンパイル使用メモリ 62,452 KB
実行使用メモリ 54,868 KB
最終ジャッジ日時 2024-07-24 02:36:21
合計ジャッジ時間 10,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 695 ms
53,992 KB
testcase_01 AC 668 ms
53,988 KB
testcase_02 AC 701 ms
54,788 KB
testcase_03 AC 672 ms
53,964 KB
testcase_04 AC 709 ms
54,012 KB
testcase_05 AC 686 ms
54,124 KB
testcase_06 AC 724 ms
53,736 KB
testcase_07 AC 714 ms
53,732 KB
testcase_08 AC 688 ms
54,700 KB
testcase_09 AC 763 ms
54,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = ii()
    f(n)
  end

  def f(n) do
    if n != 0 do
      [a, b] = li()
      if a == b do
        IO.puts("=")
      else
        t = String.to_charlist(Integer.to_string(a-b))
        g(t)
      end
      f(n-1)
    end
  end

  def g([?- | _]), do: IO.puts [60]
  def g(_), do: IO.puts [62]

  def input, do: String.trim(IO.read(:line))
  def ii, do: String.to_integer(input())
  def li, do: Enum.map(String.split(input()), &String.to_integer/1)
end
0