結果

問題 No.799 赤黒かーどげぇむ
ユーザー gemmarogemmaro
提出日時 2020-04-10 10:04:02
言語 Elixir
(1.16.2)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 63,032 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-06-09 23:17:16
合計ジャッジ時間 12,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
54,148 KB
testcase_01 AC 519 ms
54,052 KB
testcase_02 AC 520 ms
54,140 KB
testcase_03 AC 520 ms
54,008 KB
testcase_04 AC 529 ms
54,060 KB
testcase_05 AC 517 ms
54,460 KB
testcase_06 AC 527 ms
54,064 KB
testcase_07 AC 524 ms
53,788 KB
testcase_08 AC 542 ms
54,168 KB
testcase_09 AC 531 ms
54,280 KB
testcase_10 AC 530 ms
54,192 KB
testcase_11 AC 524 ms
53,800 KB
testcase_12 AC 528 ms
53,928 KB
testcase_13 AC 539 ms
53,620 KB
testcase_14 AC 518 ms
54,424 KB
testcase_15 AC 541 ms
54,020 KB
testcase_16 AC 525 ms
53,936 KB
testcase_17 AC 527 ms
54,280 KB
testcase_18 AC 523 ms
53,748 KB
testcase_19 AC 520 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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