結果

問題 No.56 消費税
ユーザー 826814741_6826814741_6
提出日時 2019-01-19 16:25:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 348 ms / 5,000 ms
コード長 149 bytes
コンパイル時間 10,550 ms
コンパイル使用メモリ 422,204 KB
実行使用メモリ 55,420 KB
最終ジャッジ日時 2024-04-30 19:52:19
合計ジャッジ時間 20,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
55,196 KB
testcase_01 AC 339 ms
55,160 KB
testcase_02 AC 342 ms
55,332 KB
testcase_03 AC 345 ms
55,276 KB
testcase_04 AC 344 ms
55,392 KB
testcase_05 AC 341 ms
55,156 KB
testcase_06 AC 342 ms
55,280 KB
testcase_07 AC 348 ms
55,248 KB
testcase_08 AC 346 ms
55,296 KB
testcase_09 AC 342 ms
55,120 KB
testcase_10 AC 333 ms
55,204 KB
testcase_11 AC 334 ms
55,264 KB
testcase_12 AC 335 ms
55,260 KB
testcase_13 AC 345 ms
55,256 KB
testcase_14 AC 336 ms
55,252 KB
testcase_15 AC 337 ms
55,376 KB
testcase_16 AC 341 ms
55,348 KB
testcase_17 AC 344 ms
55,332 KB
testcase_18 AC 338 ms
55,192 KB
testcase_19 AC 335 ms
55,240 KB
testcase_20 AC 342 ms
55,140 KB
testcase_21 AC 339 ms
55,236 KB
testcase_22 AC 335 ms
55,108 KB
testcase_23 AC 343 ms
55,256 KB
testcase_24 AC 341 ms
55,192 KB
testcase_25 AC 341 ms
55,420 KB
testcase_26 AC 336 ms
55,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) = println(f(g.nextInt(),g.nextInt()))
         ^

ソースコード

diff #

val g = java.util.Scanner(System.`in`)
fun f(a: Int, b: Int): Int = a*(b+100)/100
fun main(args: Array<String>) = println(f(g.nextInt(),g.nextInt()))
0