結果

問題 No.32 貯金箱の憂鬱
ユーザー javyjavy
提出日時 2015-11-02 22:00:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 281 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 12,411 ms
コンパイル使用メモリ 426,896 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-23 02:11:58
合計ジャッジ時間 15,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
54,268 KB
testcase_01 AC 271 ms
54,168 KB
testcase_02 AC 276 ms
54,296 KB
testcase_03 AC 278 ms
54,172 KB
testcase_04 AC 277 ms
54,292 KB
testcase_05 AC 272 ms
54,400 KB
testcase_06 AC 280 ms
54,248 KB
testcase_07 AC 281 ms
54,244 KB
testcase_08 AC 281 ms
54,228 KB
testcase_09 AC 279 ms
54,160 KB
testcase_10 AC 278 ms
54,248 KB
testcase_11 AC 276 ms
54,332 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

/**
 * Created by hichikawa on 2015/11/01.
 */

fun main(args: Array<String>) {

    fun readLineInt() : Int{
        val s = readLine() as String
        return s.toInt()
    }

    val sum = readLineInt() * 100 + readLineInt() * 25 + readLineInt() * 1
    var count = 0
    val sumUnder1000 = sum % 1000
    count += sumUnder1000 / 100
    val sumUnder100 = sumUnder1000 % 100
    count += sumUnder100 / 25
    val sumUnder25 = sumUnder100 % 25
    count += sumUnder25
    println(count)
}
0