結果

問題 No.1219 Mancala Combo
ユーザー rutilicusrutilicus
提出日時 2020-09-06 11:11:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 10,848 ms
コンパイル使用メモリ 432,724 KB
実行使用メモリ 83,004 KB
最終ジャッジ日時 2024-05-06 20:51:11
合計ジャッジ時間 23,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
56,972 KB
testcase_01 AC 285 ms
56,992 KB
testcase_02 AC 290 ms
57,084 KB
testcase_03 AC 281 ms
57,060 KB
testcase_04 AC 293 ms
57,136 KB
testcase_05 AC 296 ms
57,012 KB
testcase_06 AC 288 ms
56,912 KB
testcase_07 AC 295 ms
57,104 KB
testcase_08 AC 290 ms
56,924 KB
testcase_09 AC 290 ms
56,988 KB
testcase_10 AC 293 ms
56,868 KB
testcase_11 AC 290 ms
57,028 KB
testcase_12 AC 294 ms
57,052 KB
testcase_13 AC 284 ms
57,068 KB
testcase_14 AC 281 ms
56,720 KB
testcase_15 AC 288 ms
56,900 KB
testcase_16 AC 311 ms
56,920 KB
testcase_17 AC 517 ms
73,412 KB
testcase_18 AC 523 ms
71,036 KB
testcase_19 AC 497 ms
72,276 KB
testcase_20 AC 535 ms
71,400 KB
testcase_21 AC 504 ms
70,024 KB
testcase_22 AC 507 ms
69,652 KB
testcase_23 AC 513 ms
77,244 KB
testcase_24 AC 517 ms
67,780 KB
testcase_25 AC 491 ms
66,932 KB
testcase_26 AC 522 ms
70,712 KB
testcase_27 AC 521 ms
79,188 KB
testcase_28 AC 531 ms
83,004 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:17:13: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln("Yes")
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()
    val aArr = readInputLine().split(" ").map { it.toLong() }.toLongArray()

    var addCnt = 0L

    for (i in n - 1 downTo 0) {
        if ((addCnt + aArr[i]) % (i + 1).toLong() != 0L) {
            println("No")
            return
        }
        addCnt += (addCnt + aArr[i]) / (i + 1).toLong()
    }

    builder.appendln("Yes")

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0