結果
問題 | No.929 よくあるボールを移動するやつ |
ユーザー | norioc |
提出日時 | 2024-08-12 02:22:27 |
言語 | Elixir (1.18.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 12 |
ソースコード
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