結果

問題 No.169 何分かかるの!?
ユーザー 💕💖💞💕💖💞
提出日時 2018-07-25 21:32:46
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 9,875 ms
コンパイル使用メモリ 423,516 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-04-30 19:04:33
合計ジャッジ時間 16,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 246 ms
54,308 KB
testcase_01 WA -
testcase_02 AC 254 ms
54,168 KB
testcase_03 AC 249 ms
54,384 KB
testcase_04 AC 258 ms
54,360 KB
testcase_05 AC 251 ms
54,300 KB
testcase_06 AC 249 ms
54,232 KB
testcase_07 AC 257 ms
54,472 KB
testcase_08 AC 254 ms
54,304 KB
testcase_09 WA -
testcase_10 AC 255 ms
54,228 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 251 ms
54,336 KB
testcase_14 AC 246 ms
54,208 KB
testcase_15 AC 268 ms
54,348 KB
testcase_16 AC 263 ms
54,204 KB
testcase_17 AC 246 ms
54,344 KB
testcase_18 AC 256 ms
54,444 KB
testcase_19 WA -
testcase_20 AC 252 ms
54,256 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 245 ms
54,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

import java.lang.Math
fun main(args:Array<String>) {
  val n = readLine()!!.toDouble()
  val m = readLine()!!.toDouble()
  (m/(1.0 - n/100)).let { Math.round(it) }.run(::println)
}
0