結果

問題 No.799 赤黒かーどげぇむ
ユーザー nao22bnao22b
提出日時 2019-04-13 10:35:26
言語 Elixir
(1.16.2)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 1,192 ms
コンパイル使用メモリ 62,452 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-06-09 22:29:04
合計ジャッジ時間 15,127 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 640 ms
54,384 KB
testcase_01 AC 631 ms
54,068 KB
testcase_02 AC 635 ms
53,928 KB
testcase_03 AC 629 ms
54,116 KB
testcase_04 AC 633 ms
53,936 KB
testcase_05 AC 626 ms
53,664 KB
testcase_06 AC 628 ms
54,052 KB
testcase_07 AC 628 ms
53,548 KB
testcase_08 AC 617 ms
53,836 KB
testcase_09 AC 624 ms
53,544 KB
testcase_10 AC 633 ms
53,596 KB
testcase_11 AC 629 ms
54,008 KB
testcase_12 AC 634 ms
54,052 KB
testcase_13 AC 619 ms
53,924 KB
testcase_14 AC 630 ms
53,432 KB
testcase_15 AC 622 ms
54,148 KB
testcase_16 AC 626 ms
54,060 KB
testcase_17 AC 624 ms
53,928 KB
testcase_18 AC 613 ms
54,012 KB
testcase_19 AC 634 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def same_number_count(a, b, c, d) do
        n1 = max(a, c)
        n2 = min(b, d)
        max(0, n2 - n1 + 1)
    end

    def solve(a, b, c, d) do
        (b - a + 1) * (d - c + 1) - same_number_count(a, b, c, d)
    end

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