結果

問題 No.959 tree and fire
ユーザー gemmarogemmaro
提出日時 2020-04-25 13:44:03
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 866 bytes
コンパイル時間 887 ms
コンパイル使用メモリ 63,804 KB
実行使用メモリ 56,492 KB
最終ジャッジ日時 2024-06-09 23:54:15
合計ジャッジ時間 33,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 570 ms
54,336 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 570 ms
55,840 KB
testcase_04 AC 539 ms
54,248 KB
testcase_05 AC 551 ms
55,628 KB
testcase_06 AC 537 ms
55,232 KB
testcase_07 AC 547 ms
54,268 KB
testcase_08 AC 528 ms
54,864 KB
testcase_09 AC 544 ms
54,452 KB
testcase_10 AC 567 ms
53,880 KB
testcase_11 AC 536 ms
54,528 KB
testcase_12 WA -
testcase_13 AC 531 ms
54,124 KB
testcase_14 AC 562 ms
54,604 KB
testcase_15 WA -
testcase_16 AC 554 ms
54,684 KB
testcase_17 AC 534 ms
54,624 KB
testcase_18 AC 534 ms
54,196 KB
testcase_19 AC 540 ms
55,752 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 540 ms
54,256 KB
testcase_23 AC 549 ms
54,380 KB
testcase_24 AC 549 ms
54,008 KB
testcase_25 AC 557 ms
54,388 KB
testcase_26 AC 530 ms
54,376 KB
testcase_27 AC 543 ms
54,500 KB
testcase_28 AC 539 ms
54,456 KB
testcase_29 AC 543 ms
54,288 KB
testcase_30 AC 549 ms
55,172 KB
testcase_31 AC 545 ms
54,004 KB
testcase_32 AC 552 ms
54,380 KB
testcase_33 AC 543 ms
54,376 KB
testcase_34 AC 544 ms
54,480 KB
testcase_35 AC 531 ms
54,380 KB
testcase_36 AC 556 ms
54,392 KB
testcase_37 AC 577 ms
54,156 KB
testcase_38 AC 549 ms
54,260 KB
testcase_39 AC 584 ms
55,012 KB
testcase_40 AC 559 ms
54,092 KB
testcase_41 AC 527 ms
54,732 KB
testcase_42 AC 538 ms
55,584 KB
testcase_43 AC 539 ms
55,044 KB
testcase_44 AC 549 ms
55,176 KB
testcase_45 AC 536 ms
54,268 KB
testcase_46 AC 541 ms
53,860 KB
testcase_47 AC 531 ms
53,852 KB
testcase_48 AC 537 ms
55,024 KB
testcase_49 AC 526 ms
54,304 KB
testcase_50 AC 534 ms
54,896 KB
testcase_51 AC 530 ms
54,260 KB
testcase_52 AC 532 ms
54,776 KB
testcase_53 AC 548 ms
54,236 KB
testcase_54 AC 534 ms
54,364 KB
testcase_55 AC 540 ms
54,400 KB
testcase_56 AC 530 ms
54,244 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, _} ->
        m * :math.pow(p, 2) + :math.pow(p, 3) * (m - 2)

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

      {_, 1} ->
        n * :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