結果

問題 No.285 消費税2
ユーザー R_FR_F
提出日時 2017-12-14 10:22:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 10,995 ms
コンパイル使用メモリ 427,988 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-11-20 13:31:45
合計ジャッジ時間 23,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 363 ms
51,440 KB
testcase_01 AC 362 ms
51,840 KB
testcase_02 AC 360 ms
51,604 KB
testcase_03 AC 363 ms
51,796 KB
testcase_04 AC 360 ms
51,488 KB
testcase_05 AC 365 ms
51,564 KB
testcase_06 AC 360 ms
51,520 KB
testcase_07 AC 361 ms
51,448 KB
testcase_08 AC 364 ms
51,596 KB
testcase_09 AC 365 ms
51,600 KB
testcase_10 AC 365 ms
51,512 KB
testcase_11 AC 368 ms
51,744 KB
testcase_12 AC 363 ms
51,596 KB
testcase_13 AC 361 ms
51,540 KB
testcase_14 AC 367 ms
51,696 KB
testcase_15 AC 365 ms
51,752 KB
testcase_16 AC 362 ms
51,468 KB
testcase_17 AC 364 ms
51,672 KB
testcase_18 AC 360 ms
51,780 KB
testcase_19 AC 363 ms
51,692 KB
testcase_20 AC 362 ms
51,584 KB
testcase_21 AC 367 ms
51,688 KB
testcase_22 AC 360 ms
51,676 KB
testcase_23 AC 363 ms
51,596 KB
testcase_24 AC 359 ms
51,544 KB
testcase_25 AC 362 ms
51,444 KB
testcase_26 AC 360 ms
51,668 KB
testcase_27 AC 364 ms
51,768 KB
testcase_28 AC 357 ms
51,740 KB
testcase_29 AC 360 ms
51,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:13:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.Scanner
import java.math.BigDecimal

class No285() {
	var input = Scanner(System. `in`).nextBigDecimal()

	fun taxPrint() {
		var tax = BigDecimal.valueOf(0.08).multiply(input);
		println(input + tax)
	}
}

fun main(args: Array<String>) {
	var no285 = No285()
	no285.taxPrint()
}
0