結果
問題 | No.78 クジ付きアイスバー |
ユーザー | javy |
提出日時 | 2015-11-28 09:31:12 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,993 bytes |
コンパイル時間 | 11,898 ms |
コンパイル使用メモリ | 437,500 KB |
実行使用メモリ | 57,208 KB |
最終ジャッジ日時 | 2024-11-20 06:13:38 |
合計ジャッジ時間 | 24,257 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 287 ms
51,628 KB |
testcase_01 | AC | 285 ms
51,820 KB |
testcase_02 | AC | 283 ms
51,908 KB |
testcase_03 | AC | 281 ms
51,824 KB |
testcase_04 | AC | 291 ms
51,732 KB |
testcase_05 | AC | 277 ms
51,668 KB |
testcase_06 | AC | 286 ms
51,900 KB |
testcase_07 | AC | 286 ms
51,732 KB |
testcase_08 | AC | 279 ms
51,940 KB |
testcase_09 | AC | 281 ms
51,656 KB |
testcase_10 | AC | 285 ms
51,664 KB |
testcase_11 | AC | 283 ms
51,668 KB |
testcase_12 | AC | 289 ms
51,528 KB |
testcase_13 | AC | 288 ms
51,812 KB |
testcase_14 | AC | 286 ms
51,792 KB |
testcase_15 | AC | 285 ms
51,648 KB |
testcase_16 | AC | 289 ms
51,804 KB |
testcase_17 | AC | 282 ms
51,868 KB |
testcase_18 | AC | 282 ms
51,768 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 280 ms
51,724 KB |
testcase_24 | AC | 279 ms
51,804 KB |
testcase_25 | AC | 285 ms
51,572 KB |
testcase_26 | AC | 286 ms
51,768 KB |
testcase_27 | AC | 287 ms
51,740 KB |
testcase_28 | AC | 278 ms
51,816 KB |
testcase_29 | AC | 287 ms
51,708 KB |
testcase_30 | AC | 278 ms
51,788 KB |
testcase_31 | AC | 284 ms
51,628 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 284 ms
51,612 KB |
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
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 sum = 0 for (item in iceArray) { sum += item } sum -= num 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 if (i >= num) { if (sum >= 0) { break } else { if (((needIce / num) - 2) > 0) { println(((needIce / (-sum)) - 2)) buyIce += ((needIce / (-sum)) - 2) * num needIce -= ((needIce / num) - 2) * num } } } // println("\t" + needIce) if (needIce <= 0) break } println(buyIce) // println(sum) }