結果

問題 No.32 貯金箱の憂鬱
ユーザー バカらっくバカらっく
提出日時 2019-09-07 11:26:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 11,126 ms
コンパイル使用メモリ 421,508 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-07-23 07:41:14
合計ジャッジ時間 15,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
54,284 KB
testcase_01 AC 301 ms
54,316 KB
testcase_02 AC 295 ms
54,380 KB
testcase_03 AC 308 ms
54,276 KB
testcase_04 AC 302 ms
54,188 KB
testcase_05 AC 305 ms
54,276 KB
testcase_06 AC 298 ms
54,176 KB
testcase_07 AC 299 ms
54,332 KB
testcase_08 AC 307 ms
54,288 KB
testcase_09 AC 296 ms
54,152 KB
testcase_10 AC 301 ms
54,192 KB
testcase_11 AC 306 ms
54,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(arr:Array<String>) {
    var inBox100 = readLine()!!.toInt()
    var inBox25 = readLine()!!.toInt()
    var inBox1 = readLine()!!.toInt()

    inBox25 = inBox25 + inBox1 / 25
    inBox1 = inBox1 % 25

    inBox100 = inBox100 + inBox25 / 4
    inBox25 = inBox25 % 4

    inBox100 = inBox100 % 10

    println(inBox100 + inBox25 + inBox1)
}
0