結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 313 ms
55,348 KB
testcase_02 AC 302 ms
55,160 KB
testcase_03 AC 306 ms
55,328 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 349 ms
55,304 KB
testcase_07 AC 304 ms
55,368 KB
testcase_08 AC 328 ms
55,428 KB
testcase_09 WA -
testcase_10 AC 314 ms
55,288 KB
testcase_11 AC 315 ms
55,284 KB
testcase_12 AC 348 ms
55,332 KB
testcase_13 AC 352 ms
55,300 KB
testcase_14 WA -
testcase_15 AC 353 ms
55,296 KB
testcase_16 WA -
testcase_17 AC 350 ms
55,300 KB
testcase_18 AC 354 ms
55,056 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 351 ms
55,184 KB
testcase_24 AC 351 ms
55,176 KB
testcase_25 WA -
testcase_26 AC 349 ms
55,184 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 353 ms
55,188 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