結果
問題 | No.46 はじめのn歩 |
ユーザー | midolin limegreen |
提出日時 | 2019-01-02 22:38:12 |
言語 | Elixir (1.16.2) |
結果 |
AC
|
実行時間 | 587 ms / 5,000 ms |
コード長 | 394 bytes |
コンパイル時間 | 1,231 ms |
コンパイル使用メモリ | 62,744 KB |
実行使用メモリ | 54,688 KB |
最終ジャッジ日時 | 2024-06-09 22:25:20 |
合計ジャッジ時間 | 7,524 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 556 ms
53,964 KB |
testcase_01 | AC | 551 ms
53,500 KB |
testcase_02 | AC | 587 ms
53,668 KB |
testcase_03 | AC | 576 ms
54,688 KB |
testcase_04 | AC | 576 ms
53,936 KB |
testcase_05 | AC | 569 ms
53,872 KB |
testcase_06 | AC | 553 ms
54,064 KB |
testcase_07 | AC | 562 ms
53,736 KB |
testcase_08 | AC | 561 ms
54,060 KB |
testcase_09 | AC | 557 ms
54,372 KB |
コンパイルメッセージ
warning: this clause cannot match because a previous clause at line 8 always matches │ 9 │ _ -> 0 │ ~~~~~~ │ └─ Main.exs:9
ソースコード
defmodule Main do def main do x = IO.gets("") |> String.trim |> String.split(" ", trim: true) |> Enum.map(&String.to_integer/1) case {div(x |> Enum.at(1), x |> Enum.at(0)), rem(x |> Enum.at(1), x |> Enum.at(0))} do {n, 0} -> n {n, _} -> n + 1 _ -> 0 end |> Integer.to_string |> IO.puts end end