結果

問題 No.56 消費税
ユーザー uchida_tuchida_t
提出日時 2023-05-08 18:34:50
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 13,599 ms
コンパイル使用メモリ 428,580 KB
実行使用メモリ 57,192 KB
最終ジャッジ日時 2024-05-04 02:47:39
合計ジャッジ時間 17,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
56,948 KB
testcase_01 AC 278 ms
56,812 KB
testcase_02 AC 282 ms
56,812 KB
testcase_03 WA -
testcase_04 AC 279 ms
56,808 KB
testcase_05 AC 274 ms
56,972 KB
testcase_06 AC 268 ms
56,840 KB
testcase_07 AC 271 ms
56,964 KB
testcase_08 AC 267 ms
56,920 KB
testcase_09 AC 265 ms
56,944 KB
testcase_10 AC 263 ms
56,980 KB
testcase_11 AC 263 ms
56,976 KB
testcase_12 AC 279 ms
56,956 KB
testcase_13 AC 269 ms
56,908 KB
testcase_14 AC 260 ms
56,944 KB
testcase_15 AC 264 ms
56,812 KB
testcase_16 AC 277 ms
57,084 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
	var (a,b)=readLine()!!.split(" ").map(String::toInt)
	var tax = b.toDouble() / 100
	var total = a * (1+tax)
	var answer = total.toInt()
	println(answer)
}
0