結果

問題 No.32 貯金箱の憂鬱
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 12:01:49
言語 Elixir
(1.16.2)
結果
AC  
実行時間 566 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 1,106 ms
コンパイル使用メモリ 64,856 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-06-09 22:48:06
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 544 ms
53,796 KB
testcase_01 AC 537 ms
54,068 KB
testcase_02 AC 536 ms
53,936 KB
testcase_03 AC 536 ms
54,004 KB
testcase_04 AC 534 ms
54,188 KB
testcase_05 AC 530 ms
53,940 KB
testcase_06 AC 540 ms
54,048 KB
testcase_07 AC 537 ms
53,688 KB
testcase_08 AC 566 ms
54,068 KB
testcase_09 AC 529 ms
53,556 KB
testcase_10 AC 529 ms
53,860 KB
testcase_11 AC 523 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do 
    l = IO.gets("") |> String.trim |> String.to_integer
    m = IO.gets("") |> String.trim |> String.to_integer
    n = IO.gets("") |> String.trim |> String.to_integer
    sum = l*100+m*25+n |> rem(1000)
    ll = div(sum,100)
    mm = rem(sum,100) |> div(25)
    nn = rem(sum,100) |> rem(25)
    nn + mm + ll |> IO.puts
  end
end
0