結果

問題 No.1219 Mancala Combo
ユーザー rutilicusrutilicus
提出日時 2020-09-06 11:07:56
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 13,723 ms
コンパイル使用メモリ 440,112 KB
実行使用メモリ 76,864 KB
最終ジャッジ日時 2024-05-06 20:50:45
合計ジャッジ時間 23,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
52,068 KB
testcase_01 AC 291 ms
51,896 KB
testcase_02 AC 292 ms
51,788 KB
testcase_03 AC 290 ms
51,632 KB
testcase_04 AC 301 ms
51,784 KB
testcase_05 AC 296 ms
51,880 KB
testcase_06 AC 296 ms
52,036 KB
testcase_07 AC 298 ms
51,656 KB
testcase_08 AC 294 ms
51,716 KB
testcase_09 AC 289 ms
51,688 KB
testcase_10 AC 291 ms
51,724 KB
testcase_11 AC 318 ms
51,884 KB
testcase_12 AC 300 ms
51,896 KB
testcase_13 AC 299 ms
51,908 KB
testcase_14 AC 290 ms
51,700 KB
testcase_15 AC 291 ms
51,800 KB
testcase_16 AC 290 ms
51,820 KB
testcase_17 AC 549 ms
68,544 KB
testcase_18 AC 566 ms
69,284 KB
testcase_19 AC 524 ms
67,460 KB
testcase_20 AC 523 ms
69,712 KB
testcase_21 AC 520 ms
65,208 KB
testcase_22 AC 531 ms
68,060 KB
testcase_23 AC 521 ms
71,712 KB
testcase_24 AC 512 ms
66,688 KB
testcase_25 AC 517 ms
65,784 KB
testcase_26 AC 602 ms
68,964 KB
testcase_27 AC 581 ms
73,560 KB
testcase_28 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.toInt() }.toIntArray()

    var addCnt = 0

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

    builder.appendln("Yes")

    print(builder.toString())
}

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