結果

問題 No.56 消費税
ユーザー lrf141lrf141
提出日時 2017-03-07 23:16:31
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 926 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 8,704 ms
コンパイル使用メモリ 253,504 KB
実行使用メモリ 63,388 KB
最終ジャッジ日時 2024-06-30 00:18:00
合計ジャッジ時間 34,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 892 ms
63,304 KB
testcase_01 AC 888 ms
63,376 KB
testcase_02 AC 894 ms
63,320 KB
testcase_03 AC 897 ms
63,204 KB
testcase_04 AC 892 ms
63,328 KB
testcase_05 AC 890 ms
63,360 KB
testcase_06 AC 903 ms
63,192 KB
testcase_07 AC 890 ms
63,204 KB
testcase_08 AC 926 ms
63,256 KB
testcase_09 AC 895 ms
63,360 KB
testcase_10 AC 892 ms
63,144 KB
testcase_11 AC 893 ms
63,316 KB
testcase_12 AC 895 ms
63,248 KB
testcase_13 AC 885 ms
63,172 KB
testcase_14 AC 889 ms
63,020 KB
testcase_15 AC 895 ms
63,312 KB
testcase_16 AC 899 ms
63,248 KB
testcase_17 AC 906 ms
63,256 KB
testcase_18 AC 900 ms
63,256 KB
testcase_19 AC 893 ms
63,184 KB
testcase_20 AC 903 ms
63,120 KB
testcase_21 AC 904 ms
63,312 KB
testcase_22 AC 912 ms
63,320 KB
testcase_23 AC 906 ms
63,124 KB
testcase_24 AC 905 ms
63,364 KB
testcase_25 AC 887 ms
63,388 KB
testcase_26 AC 899 ms
63,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
object no56{
    def main(args:Array[String]):Unit={
        val scan = new Scanner(System.in)
        val d,p = scan.nextInt
        println(d*(100+p)/100)
    }
}
0