結果

問題 No.56 消費税
ユーザー rf141rf141
提出日時 2015-12-30 23:31:48
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 826 ms / 5,000 ms
コード長 194 bytes
コンパイル時間 5,841 ms
コンパイル使用メモリ 245,476 KB
実行使用メモリ 65,048 KB
最終ジャッジ日時 2024-06-29 12:32:33
合計ジャッジ時間 28,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 785 ms
65,008 KB
testcase_01 AC 788 ms
64,776 KB
testcase_02 AC 793 ms
64,984 KB
testcase_03 AC 812 ms
64,776 KB
testcase_04 AC 777 ms
64,624 KB
testcase_05 AC 772 ms
64,724 KB
testcase_06 AC 789 ms
64,872 KB
testcase_07 AC 790 ms
64,756 KB
testcase_08 AC 804 ms
64,772 KB
testcase_09 AC 826 ms
65,048 KB
testcase_10 AC 788 ms
64,580 KB
testcase_11 AC 768 ms
64,912 KB
testcase_12 AC 776 ms
64,812 KB
testcase_13 AC 779 ms
64,864 KB
testcase_14 AC 814 ms
64,628 KB
testcase_15 AC 788 ms
64,992 KB
testcase_16 AC 784 ms
64,760 KB
testcase_17 AC 773 ms
64,904 KB
testcase_18 AC 777 ms
64,684 KB
testcase_19 AC 803 ms
64,888 KB
testcase_20 AC 808 ms
64,896 KB
testcase_21 AC 803 ms
64,936 KB
testcase_22 AC 817 ms
64,740 KB
testcase_23 AC 824 ms
64,472 KB
testcase_24 AC 778 ms
64,804 KB
testcase_25 AC 809 ms
64,976 KB
testcase_26 AC 795 ms
64,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

object tax{
	def main(args:Array[String]):Unit = {
		val scan = new Scanner(System.in)
		val a = scan.nextInt()
		val b = scan.nextInt()

		println(a*(100+b)/100)
	}
}
0