結果

問題 No.1517 Party Location
ユーザー DieGoDieGo
提出日時 2021-07-22 14:49:51
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 61,744 KB
実行使用メモリ 56,860 KB
最終ジャッジ日時 2024-07-17 14:46:15
合計ジャッジ時間 11,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
54,492 KB
testcase_01 AC 616 ms
53,980 KB
testcase_02 AC 615 ms
53,728 KB
testcase_03 WA -
testcase_04 AC 615 ms
53,468 KB
testcase_05 AC 612 ms
53,924 KB
testcase_06 WA -
testcase_07 AC 617 ms
54,084 KB
testcase_08 WA -
testcase_09 AC 619 ms
53,600 KB
testcase_10 AC 612 ms
54,568 KB
testcase_11 WA -
testcase_12 AC 622 ms
54,872 KB
testcase_13 AC 618 ms
54,860 KB
testcase_14 AC 615 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    d = IO.read(:line) |> String.trim |> String.to_integer;
    [a, b] = IO.read(:line) |> String.trim |> String.split(" ") |> Enum.map(&String.to_integer/1)
    x = d;
    IO.puts x * a + (d - x) * b
  end
end
0