結果

問題 No.128 お年玉(1)
ユーザー 3qvwn3qvwn
提出日時 2019-07-06 00:14:42
言語 Elixir
(1.16.2)
結果
AC  
実行時間 577 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 62,820 KB
実行使用メモリ 55,268 KB
最終ジャッジ日時 2024-06-09 22:55:05
合計ジャッジ時間 15,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
54,588 KB
testcase_01 AC 565 ms
54,704 KB
testcase_02 AC 549 ms
54,568 KB
testcase_03 AC 565 ms
55,072 KB
testcase_04 AC 557 ms
54,580 KB
testcase_05 AC 554 ms
54,588 KB
testcase_06 AC 566 ms
54,588 KB
testcase_07 AC 555 ms
55,268 KB
testcase_08 AC 562 ms
54,520 KB
testcase_09 AC 546 ms
55,044 KB
testcase_10 AC 551 ms
55,056 KB
testcase_11 AC 569 ms
54,772 KB
testcase_12 AC 551 ms
54,440 KB
testcase_13 AC 556 ms
54,508 KB
testcase_14 AC 543 ms
54,488 KB
testcase_15 AC 554 ms
54,788 KB
testcase_16 AC 541 ms
54,704 KB
testcase_17 AC 549 ms
54,828 KB
testcase_18 AC 566 ms
54,924 KB
testcase_19 AC 554 ms
54,324 KB
testcase_20 AC 554 ms
54,704 KB
testcase_21 AC 547 ms
55,072 KB
testcase_22 AC 552 ms
54,696 KB
testcase_23 AC 577 ms
54,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do 
    n = IO.gets("") |> String.trim |> String.to_integer
    IO.gets("") |> String.trim |> String.to_integer |> new_year_eve(n) |> IO.puts
  end
  
  def new_year_eve(m,n) do
    div(n,m) |> Integer.digits |> Enum.slice(0..-4) |> Enum.concat([0,0,0]) |> Integer.undigits
  end
end
0