結果

問題 No.143 豆
ユーザー javyjavy
提出日時 2015-11-02 23:00:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 1,000 ms
コード長 590 bytes
コンパイル時間 12,496 ms
コンパイル使用メモリ 430,388 KB
実行使用メモリ 57,112 KB
最終ジャッジ日時 2024-07-23 10:24:14
合計ジャッジ時間 19,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
56,764 KB
testcase_01 AC 304 ms
56,828 KB
testcase_02 AC 308 ms
56,772 KB
testcase_03 AC 306 ms
56,968 KB
testcase_04 AC 308 ms
57,012 KB
testcase_05 AC 311 ms
56,848 KB
testcase_06 AC 307 ms
57,112 KB
testcase_07 AC 311 ms
56,964 KB
testcase_08 AC 304 ms
57,016 KB
testcase_09 AC 312 ms
57,076 KB
testcase_10 AC 307 ms
57,008 KB
testcase_11 AC 306 ms
56,980 KB
testcase_12 AC 308 ms
56,976 KB
testcase_13 AC 304 ms
56,908 KB
testcase_14 AC 298 ms
56,900 KB
testcase_15 AC 308 ms
57,028 KB
testcase_16 AC 299 ms
57,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/02.
 */
fun main(args: Array<String>) {
    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }
    val inputBeans = readLineIntArray()
    var numBeans = inputBeans[0] * inputBeans[1]
    val personsFimillyAge = readLineIntArray()
    for (num in personsFimillyAge) {
        numBeans -= num
        if (numBeans < 0) {
            println(-1)
            return
        }
    }
    println(numBeans)
}
0