結果

問題 No.929 よくあるボールを移動するやつ
ユーザー noriocnorioc
提出日時 2024-08-12 02:33:15
言語 Elixir
(1.16.2)
結果
AC  
実行時間 749 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 61,964 KB
実行使用メモリ 92,072 KB
最終ジャッジ日時 2024-08-12 02:33:30
合計ジャッジ時間 13,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
53,888 KB
testcase_01 AC 569 ms
53,936 KB
testcase_02 AC 548 ms
54,240 KB
testcase_03 AC 567 ms
53,548 KB
testcase_04 AC 547 ms
54,156 KB
testcase_05 AC 567 ms
54,000 KB
testcase_06 AC 540 ms
53,928 KB
testcase_07 AC 658 ms
64,316 KB
testcase_08 AC 734 ms
87,380 KB
testcase_09 AC 733 ms
87,368 KB
testcase_10 AC 716 ms
92,072 KB
testcase_11 AC 745 ms
87,524 KB
testcase_12 AC 731 ms
87,096 KB
testcase_13 AC 744 ms
87,216 KB
testcase_14 AC 749 ms
87,472 KB
testcase_15 AC 731 ms
87,276 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} ->
        {excess + b - 1, ans + abs(excess)}
    end
    IO.puts ans
  end
end
0