結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー DieGoDieGo
提出日時 2021-07-22 12:26:07
言語 Elixir
(1.16.2)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 4,499 ms
コンパイル使用メモリ 61,104 KB
実行使用メモリ 56,020 KB
最終ジャッジ日時 2024-07-17 14:39:49
合計ジャッジ時間 21,067 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
54,204 KB
testcase_01 AC 523 ms
54,980 KB
testcase_02 AC 524 ms
53,736 KB
testcase_03 AC 528 ms
53,736 KB
testcase_04 AC 528 ms
54,040 KB
testcase_05 AC 528 ms
54,920 KB
testcase_06 AC 527 ms
53,784 KB
testcase_07 AC 530 ms
53,856 KB
testcase_08 AC 529 ms
54,436 KB
testcase_09 AC 529 ms
54,300 KB
testcase_10 AC 527 ms
54,936 KB
testcase_11 AC 525 ms
53,604 KB
testcase_12 AC 530 ms
54,108 KB
testcase_13 AC 525 ms
54,516 KB
testcase_14 AC 533 ms
54,164 KB
testcase_15 AC 530 ms
53,876 KB
testcase_16 AC 525 ms
56,020 KB
testcase_17 AC 528 ms
54,044 KB
testcase_18 AC 529 ms
54,300 KB
testcase_19 AC 529 ms
53,616 KB
testcase_20 AC 531 ms
54,392 KB
testcase_21 AC 526 ms
54,040 KB
testcase_22 AC 529 ms
55,192 KB
testcase_23 AC 532 ms
54,032 KB
testcase_24 AC 534 ms
53,756 KB
testcase_25 AC 524 ms
53,732 KB
testcase_26 AC 526 ms
54,260 KB
testcase_27 AC 605 ms
54,172 KB
testcase_28 AC 530 ms
54,040 KB
testcase_29 AC 528 ms
54,040 KB
testcase_30 AC 527 ms
54,172 KB
testcase_31 AC 530 ms
53,860 KB
testcase_32 AC 529 ms
54,032 KB
testcase_33 AC 526 ms
53,880 KB
testcase_34 AC 528 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [s, t, c] = IO.read(:line) |> String.trim() |> String.split(" ");
    si = String.to_integer(s); ti = String.to_integer(t);

    case {si, ti, c} do
      {si, ti, "<"} when si < ti -> IO.puts "YES"
      {si, ti, ">"} when si > ti -> IO.puts "YES"
      {si, ti, "="} when si == ti -> IO.puts "YES"
      _ -> IO.puts "NO"
    end
  end
end
0