結果

問題 No.799 赤黒かーどげぇむ
ユーザー gemmarogemmaro
提出日時 2020-04-10 09:49:48
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 63,476 KB
実行使用メモリ 55,936 KB
最終ジャッジ日時 2024-06-09 23:17:02
合計ジャッジ時間 13,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 573 ms
53,856 KB
testcase_01 AC 571 ms
55,384 KB
testcase_02 AC 556 ms
53,736 KB
testcase_03 AC 554 ms
54,916 KB
testcase_04 AC 566 ms
53,856 KB
testcase_05 AC 610 ms
54,128 KB
testcase_06 AC 606 ms
53,864 KB
testcase_07 WA -
testcase_08 AC 574 ms
54,472 KB
testcase_09 AC 552 ms
54,604 KB
testcase_10 AC 555 ms
53,992 KB
testcase_11 AC 560 ms
54,492 KB
testcase_12 AC 558 ms
53,748 KB
testcase_13 AC 553 ms
54,272 KB
testcase_14 AC 571 ms
54,616 KB
testcase_15 AC 583 ms
54,328 KB
testcase_16 AC 585 ms
53,864 KB
testcase_17 AC 571 ms
53,896 KB
testcase_18 AC 588 ms
54,564 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.split()
    |> Enum.map(&String.to_integer(&1))
    |> (fn [a, b, c, d] ->
          (b - a + 1) * (d - c + 1) -
            cond do
              b < c -> 0
              true -> min(b, d) - max(a, c) + 1
            end
        end).()
    |> IO.puts()
  end
end
0