結果

問題 No.285 消費税2
ユーザー R_FR_F
提出日時 2017-12-14 10:22:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 13,389 ms
コンパイル使用メモリ 433,288 KB
実行使用メモリ 57,872 KB
最終ジャッジ日時 2024-04-30 16:43:02
合計ジャッジ時間 19,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
57,764 KB
testcase_01 AC 303 ms
57,692 KB
testcase_02 AC 313 ms
57,644 KB
testcase_03 AC 302 ms
57,732 KB
testcase_04 AC 308 ms
57,660 KB
testcase_05 AC 309 ms
57,724 KB
testcase_06 AC 308 ms
57,644 KB
testcase_07 AC 316 ms
57,760 KB
testcase_08 AC 316 ms
57,688 KB
testcase_09 AC 307 ms
57,624 KB
testcase_10 AC 313 ms
57,772 KB
testcase_11 AC 309 ms
57,752 KB
testcase_12 AC 306 ms
57,636 KB
testcase_13 AC 318 ms
57,732 KB
testcase_14 AC 316 ms
57,640 KB
testcase_15 AC 313 ms
57,748 KB
testcase_16 AC 305 ms
57,776 KB
testcase_17 AC 305 ms
57,620 KB
testcase_18 AC 310 ms
57,736 KB
testcase_19 AC 303 ms
57,652 KB
testcase_20 AC 306 ms
57,644 KB
testcase_21 AC 307 ms
57,620 KB
testcase_22 AC 307 ms
57,632 KB
testcase_23 AC 307 ms
57,780 KB
testcase_24 AC 310 ms
57,756 KB
testcase_25 AC 303 ms
57,664 KB
testcase_26 AC 304 ms
57,760 KB
testcase_27 AC 314 ms
57,872 KB
testcase_28 AC 306 ms
57,624 KB
testcase_29 AC 304 ms
57,796 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