結果

問題 No.1219 Mancala Combo
ユーザー rutilicusrutilicus
提出日時 2020-09-06 11:11:32
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 14,262 ms
コンパイル使用メモリ 439,808 KB
実行使用メモリ 83,260 KB
最終ジャッジ日時 2024-11-29 06:56:07
合計ジャッジ時間 27,412 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
55,688 KB
testcase_01 AC 317 ms
55,408 KB
testcase_02 AC 321 ms
55,412 KB
testcase_03 AC 324 ms
55,488 KB
testcase_04 AC 328 ms
55,760 KB
testcase_05 AC 330 ms
55,668 KB
testcase_06 AC 333 ms
55,612 KB
testcase_07 AC 335 ms
55,420 KB
testcase_08 AC 328 ms
55,572 KB
testcase_09 AC 322 ms
55,660 KB
testcase_10 AC 323 ms
55,492 KB
testcase_11 AC 329 ms
55,736 KB
testcase_12 AC 321 ms
55,452 KB
testcase_13 AC 326 ms
55,544 KB
testcase_14 AC 323 ms
55,372 KB
testcase_15 AC 323 ms
55,428 KB
testcase_16 AC 321 ms
55,560 KB
testcase_17 AC 554 ms
73,640 KB
testcase_18 AC 565 ms
74,812 KB
testcase_19 AC 554 ms
72,412 KB
testcase_20 AC 571 ms
75,208 KB
testcase_21 AC 551 ms
69,748 KB
testcase_22 AC 571 ms
73,348 KB
testcase_23 AC 563 ms
77,124 KB
testcase_24 AC 568 ms
71,704 KB
testcase_25 AC 548 ms
70,884 KB
testcase_26 AC 571 ms
74,252 KB
testcase_27 AC 574 ms
78,960 KB
testcase_28 AC 601 ms
83,260 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