結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
54,512 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 540 ms
54,000 KB
testcase_04 AC 544 ms
54,804 KB
testcase_05 AC 536 ms
54,728 KB
testcase_06 AC 541 ms
54,644 KB
testcase_07 AC 550 ms
54,720 KB
testcase_08 AC 555 ms
54,260 KB
testcase_09 AC 526 ms
54,824 KB
testcase_10 AC 540 ms
54,660 KB
testcase_11 AC 554 ms
54,468 KB
testcase_12 WA -
testcase_13 AC 544 ms
54,972 KB
testcase_14 AC 534 ms
54,248 KB
testcase_15 WA -
testcase_16 AC 528 ms
54,464 KB
testcase_17 AC 527 ms
54,228 KB
testcase_18 AC 531 ms
54,880 KB
testcase_19 AC 540 ms
54,256 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 538 ms
53,988 KB
testcase_23 AC 545 ms
55,008 KB
testcase_24 AC 536 ms
54,920 KB
testcase_25 AC 538 ms
54,592 KB
testcase_26 AC 526 ms
56,944 KB
testcase_27 AC 557 ms
54,256 KB
testcase_28 AC 537 ms
53,996 KB
testcase_29 AC 542 ms
54,460 KB
testcase_30 AC 538 ms
54,324 KB
testcase_31 AC 541 ms
54,404 KB
testcase_32 AC 533 ms
54,344 KB
testcase_33 AC 534 ms
55,088 KB
testcase_34 AC 543 ms
54,160 KB
testcase_35 AC 528 ms
54,532 KB
testcase_36 AC 550 ms
54,656 KB
testcase_37 AC 533 ms
55,364 KB
testcase_38 AC 539 ms
53,888 KB
testcase_39 AC 555 ms
53,980 KB
testcase_40 AC 559 ms
54,368 KB
testcase_41 AC 533 ms
54,288 KB
testcase_42 AC 543 ms
54,752 KB
testcase_43 AC 534 ms
54,588 KB
testcase_44 AC 531 ms
53,744 KB
testcase_45 AC 531 ms
53,988 KB
testcase_46 AC 533 ms
54,244 KB
testcase_47 AC 539 ms
54,600 KB
testcase_48 AC 529 ms
54,168 KB
testcase_49 AC 565 ms
55,112 KB
testcase_50 AC 542 ms
54,908 KB
testcase_51 AC 546 ms
54,860 KB
testcase_52 AC 578 ms
54,004 KB
testcase_53 AC 557 ms
53,980 KB
testcase_54 AC 525 ms
54,776 KB
testcase_55 AC 534 ms
55,048 KB
testcase_56 AC 544 ms
53,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: missing parentheses on expression following operator "+", you must add parentheses to avoid ambiguities
    │
 32 │         (if(n <= 2, do: 0, else: (n - 2) * 2) + if(m <= 2, do: 0, else: (m - 2) * 2)) +
    │         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    │
    └─ Main.exs:32

ソースコード

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, _} -> m * :math.pow(p, 2)
      {_, 1} -> n * :math.pow(p, 2)
      _ -> 4 * :math.pow(p, 3)
    end +
      :math.pow(p, 4) *
        (if(n <= 2, do: 0, else: (n - 2) * 2) + if(m <= 2, do: 0, else: (m - 2) * 2)) +
      :math.pow(p, 5) * if n <= 2 || m <= 2, do: 0, else: (n - 2) * (m - 2)
  end
end
0