結果

問題 No.1527 Input Constant is Good
ユーザー DieGoDieGo
提出日時 2021-07-22 15:48:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 63,028 KB
実行使用メモリ 55,432 KB
最終ジャッジ日時 2024-07-17 14:54:48
合計ジャッジ時間 7,583 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
54,356 KB
testcase_01 AC 520 ms
54,348 KB
testcase_02 AC 522 ms
54,620 KB
testcase_03 AC 520 ms
53,700 KB
testcase_04 AC 524 ms
54,360 KB
testcase_05 AC 517 ms
54,316 KB
testcase_06 AC 519 ms
54,196 KB
testcase_07 AC 519 ms
54,392 KB
testcase_08 AC 521 ms
53,940 KB
testcase_09 AC 526 ms
53,476 KB
testcase_10 AC 520 ms
55,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b] = IO.read(:line) |> String.trim |> String.split(" ") |> Enum.map(&String.to_integer/1)

    cond do
      a <= b -> IO.puts "Yes"
      a > b -> IO.puts "No"
      true -> IO.puts "No"
    end
  end
end
0