結果

問題 No.929 よくあるボールを移動するやつ
ユーザー noriocnorioc
提出日時 2024-08-12 02:22:27
言語 Elixir
(1.16.2)
結果
AC  
実行時間 779 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 2,824 ms
コンパイル使用メモリ 62,096 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-08-12 02:22:43
合計ジャッジ時間 15,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 554 ms
55,664 KB
testcase_01 AC 584 ms
53,748 KB
testcase_02 AC 555 ms
54,916 KB
testcase_03 AC 568 ms
54,008 KB
testcase_04 AC 545 ms
53,968 KB
testcase_05 AC 589 ms
54,076 KB
testcase_06 AC 541 ms
53,860 KB
testcase_07 AC 665 ms
66,756 KB
testcase_08 AC 735 ms
90,712 KB
testcase_09 AC 753 ms
90,776 KB
testcase_10 AC 731 ms
92,160 KB
testcase_11 AC 753 ms
91,820 KB
testcase_12 AC 773 ms
89,836 KB
testcase_13 AC 740 ms
89,872 KB
testcase_14 AC 779 ms
89,680 KB
testcase_15 AC 767 ms
90,032 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 = ii()
    bs = li()

    {_, ans} = for b <- bs, reduce: {0, 0} do
      {excess, ans} ->
        a = ans + abs(excess)
        {excess + b - 1, a}
    end
    IO.puts ans
  end
end
0