結果

問題 No.1453 手助け
ユーザー バカらっくバカらっく
提出日時 2022-02-04 11:04:38
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 14,405 ms
コンパイル使用メモリ 439,768 KB
実行使用メモリ 51,980 KB
最終ジャッジ日時 2024-06-11 10:07:37
合計ジャッジ時間 18,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
51,720 KB
testcase_01 AC 270 ms
51,620 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 268 ms
51,928 KB
testcase_06 WA -
testcase_07 AC 263 ms
51,876 KB
testcase_08 AC 282 ms
51,820 KB
testcase_09 AC 271 ms
51,664 KB
testcase_10 WA -
testcase_11 AC 286 ms
51,604 KB
testcase_12 WA -
testcase_13 AC 276 ms
51,544 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 268 ms
51,640 KB
testcase_17 AC 268 ms
51,760 KB
testcase_18 WA -
testcase_19 AC 273 ms
51,816 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 263 ms
51,768 KB
testcase_23 AC 265 ms
51,688 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