結果

問題 No.285 消費税2
ユーザー R_FR_F
提出日時 2017-12-14 00:55:27
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 10,683 ms
コンパイル使用メモリ 432,980 KB
実行使用メモリ 55,512 KB
最終ジャッジ日時 2024-04-30 16:42:20
合計ジャッジ時間 21,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 340 ms
55,276 KB
testcase_02 AC 349 ms
55,200 KB
testcase_03 AC 344 ms
55,156 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 343 ms
55,292 KB
testcase_07 AC 340 ms
55,160 KB
testcase_08 AC 338 ms
55,408 KB
testcase_09 WA -
testcase_10 AC 336 ms
55,364 KB
testcase_11 AC 341 ms
55,320 KB
testcase_12 AC 343 ms
55,256 KB
testcase_13 AC 347 ms
55,296 KB
testcase_14 WA -
testcase_15 AC 332 ms
55,288 KB
testcase_16 WA -
testcase_17 AC 341 ms
55,284 KB
testcase_18 AC 340 ms
55,292 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 340 ms
55,328 KB
testcase_24 AC 343 ms
55,252 KB
testcase_25 WA -
testcase_26 AC 342 ms
55,232 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 340 ms
55,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:9:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.Scanner

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

	fun consumptionTax() = input.nextLong() * 1.08
}

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