結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 539 ms
54,844 KB
testcase_04 AC 540 ms
54,252 KB
testcase_05 AC 550 ms
54,828 KB
testcase_06 AC 542 ms
54,528 KB
testcase_07 AC 545 ms
53,988 KB
testcase_08 AC 541 ms
54,112 KB
testcase_09 AC 579 ms
54,840 KB
testcase_10 AC 578 ms
54,540 KB
testcase_11 AC 530 ms
54,860 KB
testcase_12 WA -
testcase_13 AC 533 ms
54,068 KB
testcase_14 AC 534 ms
54,932 KB
testcase_15 WA -
testcase_16 AC 539 ms
54,716 KB
testcase_17 AC 550 ms
54,672 KB
testcase_18 AC 538 ms
54,484 KB
testcase_19 AC 552 ms
54,252 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 538 ms
54,692 KB
testcase_23 AC 546 ms
55,588 KB
testcase_24 AC 539 ms
54,148 KB
testcase_25 AC 531 ms
54,248 KB
testcase_26 AC 538 ms
54,380 KB
testcase_27 AC 533 ms
54,740 KB
testcase_28 AC 582 ms
56,060 KB
testcase_29 AC 539 ms
54,376 KB
testcase_30 AC 537 ms
54,964 KB
testcase_31 AC 533 ms
54,904 KB
testcase_32 AC 537 ms
55,220 KB
testcase_33 AC 544 ms
54,256 KB
testcase_34 AC 553 ms
55,008 KB
testcase_35 AC 551 ms
54,236 KB
testcase_36 AC 546 ms
55,052 KB
testcase_37 AC 521 ms
54,256 KB
testcase_38 AC 557 ms
54,380 KB
testcase_39 AC 541 ms
54,264 KB
testcase_40 AC 539 ms
54,260 KB
testcase_41 AC 551 ms
54,848 KB
testcase_42 AC 559 ms
54,328 KB
testcase_43 AC 544 ms
54,368 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 558 ms
54,864 KB
testcase_55 AC 550 ms
54,240 KB
testcase_56 AC 543 ms
53,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: missing parentheses on expression following operator "+", you must add parentheses to avoid ambiguities
    │
 25 │         (if(n <= 2, do: 0, else: (n - 2) * 2) + if(m <= 2, do: 0, else: (m - 2) * 2)) +
    │         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    │
    └─ Main.exs:25

ソースコード

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()
      |> String.to_float()

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

  def solve({n, m}, p) do
    case {n, m} do
      {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