結果

問題 No.169 何分かかるの!?
ユーザー gemmarogemmaro
提出日時 2020-04-08 12:01:45
言語 Elixir
(1.16.2)
結果
AC  
実行時間 564 ms / 1,000 ms
コード長 276 bytes
コンパイル時間 1,135 ms
コンパイル使用メモリ 63,552 KB
実行使用メモリ 55,820 KB
最終ジャッジ日時 2024-06-09 23:13:00
合計ジャッジ時間 15,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
54,440 KB
testcase_01 AC 540 ms
54,704 KB
testcase_02 AC 548 ms
54,176 KB
testcase_03 AC 564 ms
54,104 KB
testcase_04 AC 547 ms
54,236 KB
testcase_05 AC 544 ms
55,324 KB
testcase_06 AC 541 ms
54,688 KB
testcase_07 AC 550 ms
54,816 KB
testcase_08 AC 532 ms
55,820 KB
testcase_09 AC 535 ms
54,588 KB
testcase_10 AC 554 ms
54,004 KB
testcase_11 AC 536 ms
54,328 KB
testcase_12 AC 541 ms
54,488 KB
testcase_13 AC 550 ms
54,656 KB
testcase_14 AC 524 ms
54,708 KB
testcase_15 AC 535 ms
54,692 KB
testcase_16 AC 542 ms
54,012 KB
testcase_17 AC 548 ms
54,368 KB
testcase_18 AC 534 ms
54,244 KB
testcase_19 AC 534 ms
53,924 KB
testcase_20 AC 537 ms
55,644 KB
testcase_21 AC 537 ms
54,140 KB
testcase_22 AC 527 ms
54,536 KB
testcase_23 AC 536 ms
54,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    k =
      IO.gets("")
      |> String.trim()
      |> String.to_integer()

    s =
      IO.gets("")
      |> String.trim()
      |> String.to_integer()

    (100 * s / (100 - k))
    |> Float.floor()
    |> trunc
    |> IO.puts()
  end
end
0