結果

問題 No.169 何分かかるの!?
ユーザー くわいくわい
提出日時 2015-12-25 17:27:09
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 946 ms / 1,000 ms
コード長 161 bytes
コンパイル時間 7,725 ms
コンパイル使用メモリ 253,368 KB
実行使用メモリ 62,348 KB
最終ジャッジ日時 2023-09-11 22:55:27
合計ジャッジ時間 32,257 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 942 ms
61,548 KB
testcase_01 AC 942 ms
61,584 KB
testcase_02 AC 929 ms
61,584 KB
testcase_03 AC 927 ms
61,652 KB
testcase_04 AC 933 ms
61,608 KB
testcase_05 AC 936 ms
61,752 KB
testcase_06 AC 942 ms
61,636 KB
testcase_07 AC 937 ms
61,488 KB
testcase_08 AC 920 ms
61,776 KB
testcase_09 AC 933 ms
62,348 KB
testcase_10 AC 928 ms
61,632 KB
testcase_11 AC 930 ms
61,624 KB
testcase_12 AC 935 ms
61,524 KB
testcase_13 AC 934 ms
61,596 KB
testcase_14 AC 937 ms
61,640 KB
testcase_15 AC 927 ms
61,760 KB
testcase_16 AC 928 ms
61,604 KB
testcase_17 AC 926 ms
61,592 KB
testcase_18 AC 932 ms
61,528 KB
testcase_19 AC 931 ms
61,564 KB
testcase_20 AC 932 ms
61,556 KB
testcase_21 AC 946 ms
61,604 KB
testcase_22 AC 939 ms
61,572 KB
testcase_23 AC 937 ms
61,644 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