結果

問題 No.56 消費税
ユーザー 826814741_6826814741_6
提出日時 2019-01-19 16:25:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 326 ms / 5,000 ms
コード長 149 bytes
コンパイル時間 10,469 ms
コンパイル使用メモリ 421,684 KB
実行使用メモリ 51,344 KB
最終ジャッジ日時 2024-11-20 17:25:35
合計ジャッジ時間 18,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
51,316 KB
testcase_01 AC 314 ms
51,020 KB
testcase_02 AC 307 ms
51,024 KB
testcase_03 AC 311 ms
51,204 KB
testcase_04 AC 311 ms
51,160 KB
testcase_05 AC 307 ms
51,064 KB
testcase_06 AC 317 ms
51,076 KB
testcase_07 AC 322 ms
51,204 KB
testcase_08 AC 312 ms
51,308 KB
testcase_09 AC 306 ms
51,132 KB
testcase_10 AC 317 ms
51,072 KB
testcase_11 AC 311 ms
51,344 KB
testcase_12 AC 313 ms
51,016 KB
testcase_13 AC 323 ms
51,188 KB
testcase_14 AC 321 ms
51,092 KB
testcase_15 AC 324 ms
51,016 KB
testcase_16 AC 316 ms
51,276 KB
testcase_17 AC 301 ms
51,208 KB
testcase_18 AC 305 ms
50,980 KB
testcase_19 AC 302 ms
51,232 KB
testcase_20 AC 326 ms
51,076 KB
testcase_21 AC 314 ms
51,312 KB
testcase_22 AC 315 ms
51,292 KB
testcase_23 AC 318 ms
50,916 KB
testcase_24 AC 313 ms
51,060 KB
testcase_25 AC 312 ms
50,960 KB
testcase_26 AC 314 ms
51,292 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