結果

問題 No.169 何分かかるの!?
ユーザー くわいくわい
提出日時 2015-12-25 17:27:09
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 776 ms / 1,000 ms
コード長 161 bytes
コンパイル時間 7,669 ms
コンパイル使用メモリ 241,728 KB
実行使用メモリ 64,584 KB
最終ジャッジ日時 2024-06-29 12:26:30
合計ジャッジ時間 26,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 738 ms
64,516 KB
testcase_01 AC 771 ms
64,080 KB
testcase_02 AC 761 ms
64,240 KB
testcase_03 AC 749 ms
64,376 KB
testcase_04 AC 741 ms
64,112 KB
testcase_05 AC 738 ms
64,520 KB
testcase_06 AC 757 ms
64,404 KB
testcase_07 AC 768 ms
64,324 KB
testcase_08 AC 757 ms
64,368 KB
testcase_09 AC 753 ms
64,312 KB
testcase_10 AC 743 ms
64,396 KB
testcase_11 AC 747 ms
64,324 KB
testcase_12 AC 747 ms
64,584 KB
testcase_13 AC 749 ms
64,344 KB
testcase_14 AC 771 ms
64,524 KB
testcase_15 AC 769 ms
64,424 KB
testcase_16 AC 747 ms
64,500 KB
testcase_17 AC 738 ms
64,120 KB
testcase_18 AC 749 ms
64,384 KB
testcase_19 AC 765 ms
64,492 KB
testcase_20 AC 769 ms
64,476 KB
testcase_21 AC 757 ms
64,260 KB
testcase_22 AC 776 ms
64,388 KB
testcase_23 AC 745 ms
64,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Yukicoder extends App {
  val K = StdIn.readInt()
  val S = StdIn.readInt()
  val result = S * 100 / (100 - K)
  println(result)
}
0