結果

問題 No.1139 Slime Race
ユーザー noriocnorioc
提出日時 2024-08-06 22:37:59
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,858 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 61,752 KB
実行使用メモリ 177,064 KB
最終ジャッジ日時 2024-08-06 22:38:33
合計ジャッジ時間 31,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 585 ms
53,936 KB
testcase_01 AC 612 ms
53,552 KB
testcase_02 AC 575 ms
54,076 KB
testcase_03 AC 604 ms
54,064 KB
testcase_04 AC 579 ms
53,932 KB
testcase_05 AC 567 ms
53,940 KB
testcase_06 AC 657 ms
54,716 KB
testcase_07 AC 577 ms
53,932 KB
testcase_08 AC 599 ms
54,412 KB
testcase_09 AC 598 ms
53,924 KB
testcase_10 AC 1,664 ms
142,100 KB
testcase_11 AC 1,492 ms
139,340 KB
testcase_12 AC 1,800 ms
166,400 KB
testcase_13 AC 619 ms
54,060 KB
testcase_14 AC 1,587 ms
160,632 KB
testcase_15 AC 1,711 ms
168,376 KB
testcase_16 AC 1,824 ms
163,544 KB
testcase_17 AC 1,667 ms
177,064 KB
testcase_18 AC 1,537 ms
143,964 KB
testcase_19 AC 1,182 ms
132,024 KB
testcase_20 AC 1,098 ms
111,444 KB
testcase_21 AC 1,446 ms
152,480 KB
testcase_22 AC 1,594 ms
175,420 KB
testcase_23 AC 1,858 ms
159,072 KB
testcase_24 AC 609 ms
53,680 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
    [_, d] = li()
    input()
    vs = li()

    sv = Enum.sum(vs)
    ans = div(d+sv-1, sv)
    IO.puts ans
  end
end
0