結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー noriocnorioc
提出日時 2024-07-24 02:45:11
言語 Elixir
(1.16.2)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 1,502 ms
コンパイル使用メモリ 62,012 KB
実行使用メモリ 55,092 KB
最終ジャッジ日時 2024-07-24 02:45:21
合計ジャッジ時間 9,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 608 ms
55,004 KB
testcase_01 AC 631 ms
55,092 KB
testcase_02 AC 609 ms
54,536 KB
testcase_03 AC 642 ms
54,180 KB
testcase_04 AC 599 ms
53,860 KB
testcase_05 AC 661 ms
53,796 KB
testcase_06 AC 672 ms
54,296 KB
testcase_07 AC 633 ms
54,112 KB
testcase_08 AC 699 ms
53,748 KB
testcase_09 AC 688 ms
53,940 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
        if max(a, b) == a do
          IO.puts [62]
        else
          IO.puts [60]
        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