結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-14 14:45:02
言語 Elixir
(1.16.2)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 4,284 ms
コンパイル使用メモリ 61,432 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-07-23 03:38:02
合計ジャッジ時間 12,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 633 ms
54,448 KB
testcase_01 AC 627 ms
53,684 KB
testcase_02 AC 630 ms
54,412 KB
testcase_03 AC 634 ms
53,804 KB
testcase_04 AC 642 ms
53,928 KB
testcase_05 AC 632 ms
53,680 KB
testcase_06 AC 634 ms
53,680 KB
testcase_07 AC 637 ms
53,932 KB
testcase_08 AC 641 ms
53,964 KB
testcase_09 AC 650 ms
54,000 KB
testcase_10 AC 634 ms
53,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main() do
    [b,c]=
      IO.read(:line)
      |> String.trim()
      |> String.split(" ")
      |> Enum.map(&String.to_integer/1)
    cond do
      b==c -> IO.puts("Yes")
      (b)!=c -> IO.puts("No")
    end
  end
end
0