結果

問題 No.32 貯金箱の憂鬱
ユーザー gemmarogemmaro
提出日時 2020-04-18 21:24:48
言語 Elixir
(1.16.2)
結果
AC  
実行時間 543 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 1,235 ms
コンパイル使用メモリ 64,688 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-06-09 23:37:36
合計ジャッジ時間 8,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
54,080 KB
testcase_01 AC 534 ms
53,868 KB
testcase_02 AC 529 ms
54,052 KB
testcase_03 AC 539 ms
54,064 KB
testcase_04 AC 543 ms
54,292 KB
testcase_05 AC 542 ms
53,800 KB
testcase_06 AC 534 ms
54,256 KB
testcase_07 AC 531 ms
54,240 KB
testcase_08 AC 531 ms
54,464 KB
testcase_09 AC 531 ms
53,876 KB
testcase_10 AC 531 ms
54,064 KB
testcase_11 AC 533 ms
54,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    1..3
    |> Enum.map(fn _ -> IO.read(:line) |> String.trim() |> String.to_integer() end)
    |> solve
    |> IO.puts()
  end

  def solve([l, m, n]) do
    x = m + (n |> div(25))
    ((l + (x |> div(4))) |> rem(10)) + (x |> rem(4)) + (n |> rem(25))
  end
end
0