結果

問題 No.1798 Financial Quiz
ユーザー noriocnorioc
提出日時 2024-07-23 22:14:37
言語 Elixir
(1.16.2)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 5,190 ms
コンパイル使用メモリ 62,364 KB
実行使用メモリ 55,240 KB
最終ジャッジ日時 2024-07-23 22:14:50
合計ジャッジ時間 12,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 648 ms
54,996 KB
testcase_01 AC 684 ms
54,240 KB
testcase_02 AC 647 ms
53,724 KB
testcase_03 AC 683 ms
54,004 KB
testcase_04 AC 649 ms
54,724 KB
testcase_05 AC 672 ms
53,692 KB
testcase_06 AC 650 ms
54,520 KB
testcase_07 AC 653 ms
54,600 KB
testcase_08 AC 661 ms
55,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [n, p] = li()
    ans = n - n*(p/100)
    IO.puts floor(ans)
  end

  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
end
0