結果

問題 No.1453 手助け
ユーザー バカらっくバカらっく
提出日時 2022-02-04 11:07:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 14,359 ms
コンパイル使用メモリ 434,744 KB
実行使用メモリ 51,876 KB
最終ジャッジ日時 2024-06-11 10:08:05
合計ジャッジ時間 23,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 355 ms
51,784 KB
testcase_01 AC 339 ms
51,624 KB
testcase_02 AC 329 ms
51,532 KB
testcase_03 AC 339 ms
51,684 KB
testcase_04 AC 336 ms
51,588 KB
testcase_05 AC 356 ms
51,716 KB
testcase_06 AC 347 ms
51,740 KB
testcase_07 AC 344 ms
51,876 KB
testcase_08 AC 348 ms
51,552 KB
testcase_09 AC 334 ms
51,604 KB
testcase_10 AC 332 ms
51,620 KB
testcase_11 AC 334 ms
51,640 KB
testcase_12 AC 340 ms
51,644 KB
testcase_13 AC 330 ms
51,808 KB
testcase_14 AC 344 ms
51,664 KB
testcase_15 AC 351 ms
51,724 KB
testcase_16 AC 337 ms
51,544 KB
testcase_17 AC 354 ms
51,760 KB
testcase_18 AC 335 ms
51,784 KB
testcase_19 AC 341 ms
51,584 KB
testcase_20 AC 348 ms
51,772 KB
testcase_21 AC 340 ms
51,740 KB
testcase_22 AC 353 ms
51,496 KB
testcase_23 AC 344 ms
51,692 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (a,b,c,d,e) = readLine()!!.split(" ").map { it.toInt() }
    val candyCount = (b-c)*a
    val candy = mutableListOf<Int>()
    if(candyCount > 0) {
        candy.add(d)
        for(i in (2..candyCount)) {
            if(i % 10 != 0) {
                candy.add(candy.last())
            } else if(e <= candy.last()) {
                candy.add(candy.last() - e)
            } else {
                candy.add(candy.last())
            }
        }
    }
    println(candy.sum())
}
0