結果

問題 No.1517 Party Location
ユーザー DieGoDieGo
提出日時 2021-07-22 15:20:07
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 63,512 KB
実行使用メモリ 55,180 KB
最終ジャッジ日時 2024-07-17 14:49:05
合計ジャッジ時間 9,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
54,028 KB
testcase_01 AC 526 ms
54,036 KB
testcase_02 AC 524 ms
53,556 KB
testcase_03 WA -
testcase_04 AC 522 ms
53,552 KB
testcase_05 AC 527 ms
54,412 KB
testcase_06 WA -
testcase_07 AC 524 ms
53,720 KB
testcase_08 WA -
testcase_09 AC 518 ms
53,800 KB
testcase_10 AC 514 ms
53,888 KB
testcase_11 WA -
testcase_12 AC 533 ms
53,412 KB
testcase_13 AC 520 ms
54,044 KB
testcase_14 AC 533 ms
53,784 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