結果

問題 No.959 tree and fire
ユーザー gemmarogemmaro
提出日時 2020-04-25 13:46:37
言語 Elixir
(1.18.1)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 1,016 ms
コンパイル使用メモリ 63,656 KB
実行使用メモリ 56,144 KB
最終ジャッジ日時 2024-12-31 04:45:02
合計ジャッジ時間 34,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
54,280 KB
testcase_01 AC 544 ms
54,388 KB
testcase_02 AC 547 ms
55,496 KB
testcase_03 AC 546 ms
56,144 KB
testcase_04 AC 537 ms
54,584 KB
testcase_05 AC 534 ms
55,452 KB
testcase_06 AC 573 ms
54,060 KB
testcase_07 AC 536 ms
54,648 KB
testcase_08 AC 537 ms
54,172 KB
testcase_09 AC 541 ms
54,112 KB
testcase_10 AC 540 ms
54,848 KB
testcase_11 AC 546 ms
54,168 KB
testcase_12 AC 535 ms
54,552 KB
testcase_13 AC 556 ms
54,676 KB
testcase_14 AC 551 ms
55,128 KB
testcase_15 AC 540 ms
54,308 KB
testcase_16 AC 549 ms
55,712 KB
testcase_17 AC 539 ms
54,040 KB
testcase_18 AC 548 ms
54,516 KB
testcase_19 AC 540 ms
54,548 KB
testcase_20 AC 543 ms
54,944 KB
testcase_21 AC 547 ms
55,308 KB
testcase_22 AC 540 ms
54,944 KB
testcase_23 AC 546 ms
55,128 KB
testcase_24 AC 549 ms
54,552 KB
testcase_25 AC 546 ms
54,408 KB
testcase_26 AC 548 ms
54,244 KB
testcase_27 AC 543 ms
55,576 KB
testcase_28 AC 544 ms
54,416 KB
testcase_29 AC 537 ms
54,424 KB
testcase_30 AC 547 ms
53,852 KB
testcase_31 AC 538 ms
54,448 KB
testcase_32 AC 542 ms
54,552 KB
testcase_33 AC 536 ms
54,048 KB
testcase_34 AC 547 ms
54,420 KB
testcase_35 AC 538 ms
54,952 KB
testcase_36 AC 546 ms
54,736 KB
testcase_37 AC 537 ms
55,156 KB
testcase_38 AC 545 ms
54,116 KB
testcase_39 AC 537 ms
54,880 KB
testcase_40 AC 538 ms
54,404 KB
testcase_41 AC 543 ms
54,376 KB
testcase_42 AC 540 ms
54,252 KB
testcase_43 AC 545 ms
54,148 KB
testcase_44 AC 549 ms
54,612 KB
testcase_45 AC 557 ms
53,976 KB
testcase_46 AC 545 ms
54,108 KB
testcase_47 AC 541 ms
54,620 KB
testcase_48 AC 536 ms
54,152 KB
testcase_49 AC 543 ms
55,420 KB
testcase_50 AC 560 ms
54,444 KB
testcase_51 AC 534 ms
54,412 KB
testcase_52 AC 552 ms
54,696 KB
testcase_53 AC 549 ms
54,252 KB
testcase_54 AC 536 ms
54,540 KB
testcase_55 AC 537 ms
54,028 KB
testcase_56 AC 540 ms
55,412 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