結果

問題 No.56 消費税
ユーザー uchida_tuchida_t
提出日時 2023-05-08 18:34:50
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 12,192 ms
コンパイル使用メモリ 430,380 KB
実行使用メモリ 57,096 KB
最終ジャッジ日時 2024-11-25 09:01:37
合計ジャッジ時間 21,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
56,756 KB
testcase_01 AC 300 ms
56,520 KB
testcase_02 AC 279 ms
56,684 KB
testcase_03 WA -
testcase_04 AC 289 ms
56,636 KB
testcase_05 AC 297 ms
56,860 KB
testcase_06 AC 298 ms
56,752 KB
testcase_07 AC 294 ms
56,520 KB
testcase_08 AC 302 ms
56,756 KB
testcase_09 AC 298 ms
56,820 KB
testcase_10 AC 296 ms
56,928 KB
testcase_11 AC 305 ms
56,820 KB
testcase_12 AC 295 ms
56,744 KB
testcase_13 AC 303 ms
56,688 KB
testcase_14 AC 302 ms
56,796 KB
testcase_15 AC 304 ms
56,628 KB
testcase_16 AC 305 ms
56,744 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