結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー noriocnorioc
提出日時 2024-07-24 02:31:09
言語 Elixir
(1.16.2)
結果
RE  
実行時間 -
コード長 498 bytes
コンパイル時間 1,699 ms
コンパイル使用メモリ 61,760 KB
実行使用メモリ 56,088 KB
最終ジャッジ日時 2024-07-24 02:31:20
合計ジャッジ時間 10,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 609 ms
54,220 KB
testcase_03 RE -
testcase_04 AC 607 ms
53,992 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

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
        if [?- | _] = String.to_charlist(Integer.to_string(a-b)) do
          IO.puts [60]
        else
          IO.puts [62]
        end
      end
      f(n-1)
    end
  end

  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