結果

問題 No.1033 乱数サイ
ユーザー penqenpenqen
提出日時 2020-12-16 15:18:11
言語 Elixir
(1.16.2)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 1,103 ms
コンパイル使用メモリ 62,892 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-06-10 00:24:17
合計ジャッジ時間 11,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 539 ms
54,412 KB
testcase_01 AC 552 ms
53,932 KB
testcase_02 AC 536 ms
54,268 KB
testcase_03 AC 540 ms
54,096 KB
testcase_04 AC 549 ms
54,312 KB
testcase_05 AC 544 ms
54,336 KB
testcase_06 AC 553 ms
54,188 KB
testcase_07 AC 537 ms
54,200 KB
testcase_08 AC 559 ms
54,232 KB
testcase_09 AC 527 ms
54,160 KB
testcase_10 AC 531 ms
54,192 KB
testcase_11 AC 539 ms
54,276 KB
testcase_12 AC 539 ms
54,320 KB
testcase_13 AC 542 ms
54,056 KB
testcase_14 AC 554 ms
54,344 KB
testcase_15 AC 569 ms
54,192 KB
testcase_16 AC 573 ms
54,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [n, k] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    solve(n, k) |> IO.puts()
  end

  def solve(n, k) when 1 <= n and n <= 100_000
    and 1 <= k and k <= 100_000
  do
    0..n
    |> Enum.reduce({0, 0}, fn ni, {sum, count} ->
      ki = 0..k |> Enum.count
      {sum + ni * ki, count + ki}
    end)
    |> (fn {sum, count} ->
      sum / count
    end).()
  end
end
0