結果

問題 No.2054 Different Sequence
ユーザー noriocnorioc
提出日時 2024-08-12 14:31:01
言語 Elixir
(1.16.2)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 61,664 KB
実行使用メモリ 54,828 KB
最終ジャッジ日時 2024-08-12 14:31:17
合計ジャッジ時間 15,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
54,012 KB
testcase_01 AC 579 ms
54,140 KB
testcase_02 AC 549 ms
54,376 KB
testcase_03 AC 575 ms
53,876 KB
testcase_04 AC 560 ms
54,796 KB
testcase_05 AC 581 ms
54,108 KB
testcase_06 AC 564 ms
54,424 KB
testcase_07 AC 578 ms
54,596 KB
testcase_08 AC 547 ms
54,076 KB
testcase_09 AC 573 ms
53,736 KB
testcase_10 AC 576 ms
54,604 KB
testcase_11 AC 554 ms
54,676 KB
testcase_12 AC 575 ms
53,604 KB
testcase_13 AC 559 ms
54,476 KB
testcase_14 AC 586 ms
54,104 KB
testcase_15 AC 548 ms
54,800 KB
testcase_16 AC 540 ms
54,380 KB
testcase_17 AC 573 ms
54,000 KB
testcase_18 AC 548 ms
54,116 KB
testcase_19 AC 569 ms
54,372 KB
testcase_20 AC 566 ms
54,828 KB
testcase_21 AC 591 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    [n, m] = li()

    x = div(n * (n+1), 2)
    case x <= m do
      true -> "Yes"
      false -> "No"
    end
    |> IO.puts
  end
end
0