結果

問題 No.56 消費税
ユーザー uchida_tuchida_t
提出日時 2023-05-08 18:58:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 14,391 ms
コンパイル使用メモリ 435,460 KB
実行使用メモリ 51,976 KB
最終ジャッジ日時 2024-05-04 02:58:30
合計ジャッジ時間 23,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
51,940 KB
testcase_01 AC 317 ms
51,724 KB
testcase_02 AC 322 ms
51,592 KB
testcase_03 AC 321 ms
51,572 KB
testcase_04 AC 319 ms
51,740 KB
testcase_05 AC 322 ms
51,956 KB
testcase_06 AC 321 ms
51,728 KB
testcase_07 AC 324 ms
51,920 KB
testcase_08 AC 325 ms
51,612 KB
testcase_09 AC 323 ms
51,604 KB
testcase_10 AC 316 ms
51,976 KB
testcase_11 AC 323 ms
51,720 KB
testcase_12 AC 323 ms
51,976 KB
testcase_13 AC 318 ms
51,732 KB
testcase_14 AC 320 ms
51,720 KB
testcase_15 AC 318 ms
51,760 KB
testcase_16 AC 315 ms
51,496 KB
testcase_17 AC 322 ms
51,644 KB
testcase_18 AC 318 ms
51,876 KB
testcase_19 AC 341 ms
51,720 KB
testcase_20 AC 329 ms
51,508 KB
testcase_21 AC 323 ms
51,492 KB
testcase_22 AC 323 ms
51,648 KB
testcase_23 AC 321 ms
51,916 KB
testcase_24 AC 320 ms
51,920 KB
testcase_25 AC 322 ms
51,760 KB
testcase_26 AC 323 ms
51,680 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