結果

問題 No.78 クジ付きアイスバー
ユーザー javyjavy
提出日時 2015-11-28 09:07:20
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,450 bytes
コンパイル時間 11,229 ms
コンパイル使用メモリ 442,516 KB
実行使用メモリ 113,908 KB
最終ジャッジ日時 2024-11-20 06:13:07
合計ジャッジ時間 129,504 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
60,104 KB
testcase_01 AC 274 ms
95,000 KB
testcase_02 AC 280 ms
113,908 KB
testcase_03 AC 281 ms
60,032 KB
testcase_04 AC 278 ms
95,160 KB
testcase_05 AC 1,980 ms
113,408 KB
testcase_06 AC 4,671 ms
60,620 KB
testcase_07 AC 2,002 ms
95,448 KB
testcase_08 AC 2,913 ms
113,652 KB
testcase_09 TLE -
testcase_10 AC 4,809 ms
95,552 KB
testcase_11 AC 2,553 ms
64,020 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 3,494 ms
95,164 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 281 ms
60,276 KB
testcase_24 AC 294 ms
94,908 KB
testcase_25 AC 295 ms
113,524 KB
testcase_26 AC 280 ms
60,108 KB
testcase_27 AC 283 ms
94,864 KB
testcase_28 AC 276 ms
113,696 KB
testcase_29 AC 281 ms
60,332 KB
testcase_30 AC 274 ms
95,252 KB
testcase_31 AC 281 ms
56,812 KB
testcase_32 AC 283 ms
56,812 KB
testcase_33 AC 287 ms
57,112 KB
testcase_34 AC 2,389 ms
57,108 KB
testcase_35 AC 3,178 ms
57,060 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/12.
 */
fun main(args: Array<String>) {
    fun readLineLongArray(): List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }

    fun readLineLong(): Long {
        val str = readLine() as String
        return str.toLong()
    }

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

    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    fun readLineDoubleArray(): List<Double> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toDouble() }
        return ret
    }

    fun readLineDouble() : Double {
        val str = readLine() as String
        return str.toDouble()
    }
    val input = readLineIntArray()
    val num = input[0]
    val iceArray = (readLine() as String).toCharArray().map { it.toString().toInt() }
    var needIce = input[1]
    var buyIce = 0
    var moreIce = 0
    for (i in 0..Int.MAX_VALUE) {
        if (moreIce == 0) {
            buyIce++
        } else {
            moreIce--
        }
        moreIce += iceArray[i%num]
        needIce--
        if (needIce == 0)
            break
    }
    println(buyIce)
}
0