結果

問題 No.959 tree and fire
ユーザー gemmarogemmaro
提出日時 2020-04-25 13:46:37
言語 Elixir
(1.16.2)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 1,186 ms
コンパイル使用メモリ 64,340 KB
実行使用メモリ 56,356 KB
最終ジャッジ日時 2024-06-09 23:55:01
合計ジャッジ時間 39,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 623 ms
54,096 KB
testcase_01 AC 637 ms
54,812 KB
testcase_02 AC 641 ms
54,116 KB
testcase_03 AC 638 ms
54,240 KB
testcase_04 AC 633 ms
54,788 KB
testcase_05 AC 630 ms
54,248 KB
testcase_06 AC 658 ms
54,056 KB
testcase_07 AC 646 ms
54,128 KB
testcase_08 AC 641 ms
54,848 KB
testcase_09 AC 640 ms
54,376 KB
testcase_10 AC 637 ms
54,356 KB
testcase_11 AC 629 ms
54,108 KB
testcase_12 AC 625 ms
54,112 KB
testcase_13 AC 646 ms
55,412 KB
testcase_14 AC 632 ms
54,628 KB
testcase_15 AC 637 ms
54,352 KB
testcase_16 AC 642 ms
54,828 KB
testcase_17 AC 635 ms
54,268 KB
testcase_18 AC 645 ms
54,252 KB
testcase_19 AC 648 ms
54,724 KB
testcase_20 AC 652 ms
54,256 KB
testcase_21 AC 662 ms
54,152 KB
testcase_22 AC 654 ms
54,740 KB
testcase_23 AC 635 ms
55,124 KB
testcase_24 AC 648 ms
54,408 KB
testcase_25 AC 633 ms
53,884 KB
testcase_26 AC 640 ms
53,992 KB
testcase_27 AC 654 ms
54,264 KB
testcase_28 AC 647 ms
54,256 KB
testcase_29 AC 644 ms
55,772 KB
testcase_30 AC 649 ms
54,260 KB
testcase_31 AC 627 ms
54,520 KB
testcase_32 AC 703 ms
54,252 KB
testcase_33 AC 640 ms
54,748 KB
testcase_34 AC 643 ms
56,356 KB
testcase_35 AC 636 ms
54,360 KB
testcase_36 AC 628 ms
54,872 KB
testcase_37 AC 649 ms
55,520 KB
testcase_38 AC 645 ms
54,508 KB
testcase_39 AC 657 ms
54,456 KB
testcase_40 AC 631 ms
55,304 KB
testcase_41 AC 647 ms
54,348 KB
testcase_42 AC 644 ms
54,004 KB
testcase_43 AC 660 ms
54,128 KB
testcase_44 AC 633 ms
53,920 KB
testcase_45 AC 653 ms
54,240 KB
testcase_46 AC 647 ms
54,244 KB
testcase_47 AC 651 ms
54,508 KB
testcase_48 AC 644 ms
54,404 KB
testcase_49 AC 668 ms
54,480 KB
testcase_50 AC 637 ms
55,600 KB
testcase_51 AC 621 ms
54,408 KB
testcase_52 AC 642 ms
55,268 KB
testcase_53 AC 623 ms
54,392 KB
testcase_54 AC 639 ms
53,888 KB
testcase_55 AC 649 ms
54,500 KB
testcase_56 AC 639 ms
55,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [n, m] =
      IO.read(:line)
      |> String.trim()
      |> String.split()
      |> Enum.map(&String.to_integer/1)

    p =
      IO.read(:line)
      |> String.trim()
      |> (fn s ->
            case s do
              "0" -> 0
              "1" -> 1
              _ -> s |> String.to_float()
            end
          end).()

    solve({n, m}, p)
    |> IO.puts()
  end

  def solve({n, m}, p) do
    case {n, m} do
      {1, 1} ->
        p

      {1, 2} ->
        2 * :math.pow(p, 2)

      {1, _} ->
        2 * :math.pow(p, 2) + :math.pow(p, 3) * (m - 2)

      {2, 1} ->
        2 * :math.pow(p, 2)

      {_, 1} ->
        2 * :math.pow(p, 2) + :math.pow(p, 3) * (n - 2)

      _ ->
        4 * :math.pow(p, 3) + :math.pow(p, 4) * (2 * n + 2 * m - 8) +
          :math.pow(p, 5) * (n - 2) * (m - 2)
    end
  end
end
0