結果

問題 No.56 消費税
ユーザー uchida_tuchida_t
提出日時 2023-05-08 18:58:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 13,081 ms
コンパイル使用メモリ 424,872 KB
実行使用メモリ 53,280 KB
最終ジャッジ日時 2023-08-16 19:30:12
合計ジャッジ時間 22,310 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
52,912 KB
testcase_01 AC 282 ms
52,844 KB
testcase_02 AC 284 ms
52,828 KB
testcase_03 AC 293 ms
52,912 KB
testcase_04 AC 284 ms
53,024 KB
testcase_05 AC 275 ms
53,128 KB
testcase_06 AC 279 ms
52,904 KB
testcase_07 AC 285 ms
52,912 KB
testcase_08 AC 287 ms
52,664 KB
testcase_09 AC 274 ms
53,044 KB
testcase_10 AC 277 ms
52,944 KB
testcase_11 AC 288 ms
53,248 KB
testcase_12 AC 287 ms
53,280 KB
testcase_13 AC 283 ms
52,956 KB
testcase_14 AC 284 ms
52,952 KB
testcase_15 AC 277 ms
52,716 KB
testcase_16 AC 279 ms
53,176 KB
testcase_17 AC 287 ms
53,060 KB
testcase_18 AC 285 ms
52,948 KB
testcase_19 AC 285 ms
53,120 KB
testcase_20 AC 285 ms
52,904 KB
testcase_21 AC 287 ms
53,128 KB
testcase_22 AC 279 ms
53,004 KB
testcase_23 AC 275 ms
52,928 KB
testcase_24 AC 275 ms
52,964 KB
testcase_25 AC 279 ms
52,984 KB
testcase_26 AC 279 ms
52,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 c = a * b
	var d = c / 100
	var result = a + d
	println(result)
}
0