結果

問題 No.810 割った余りの個数
ユーザー nao22bnao22b
提出日時 2019-04-12 21:36:28
言語 Elixir
(1.16.2)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 62,580 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-06-09 22:28:32
合計ジャッジ時間 22,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 634 ms
53,672 KB
testcase_01 AC 648 ms
53,556 KB
testcase_02 AC 656 ms
54,156 KB
testcase_03 AC 634 ms
53,940 KB
testcase_04 AC 636 ms
53,588 KB
testcase_05 AC 640 ms
53,948 KB
testcase_06 AC 643 ms
53,484 KB
testcase_07 AC 643 ms
53,828 KB
testcase_08 AC 639 ms
54,080 KB
testcase_09 AC 646 ms
54,072 KB
testcase_10 AC 654 ms
53,800 KB
testcase_11 AC 649 ms
53,796 KB
testcase_12 AC 640 ms
53,928 KB
testcase_13 AC 640 ms
53,976 KB
testcase_14 AC 637 ms
53,464 KB
testcase_15 AC 628 ms
53,672 KB
testcase_16 AC 639 ms
53,472 KB
testcase_17 AC 647 ms
54,068 KB
testcase_18 AC 662 ms
53,552 KB
testcase_19 AC 640 ms
54,064 KB
testcase_20 AC 622 ms
53,556 KB
testcase_21 AC 647 ms
53,824 KB
testcase_22 AC 638 ms
54,484 KB
testcase_23 AC 637 ms
53,868 KB
testcase_24 AC 640 ms
53,552 KB
testcase_25 AC 645 ms
54,104 KB
testcase_26 AC 640 ms
53,556 KB
testcase_27 AC 648 ms
54,540 KB
testcase_28 AC 648 ms
53,880 KB
testcase_29 AC 646 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def solve(l, l, _) do
        1
    end
    def solve(l, r, m) when (r - l) >= m do
        m
    end
    def solve(l, r, m) do
        a = rem(l, m)
        b = rem(r, m)
        cond do
            b >= a -> (b - a + 1)
            true -> (m - a) + b + 1
        end
    end

    def main do
        [l, r, m] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1)
        solve(l, r, m) |> IO.puts
    end
end
0