結果

問題 No.1219 Mancala Combo
ユーザー rutilicusrutilicus
提出日時 2020-09-06 11:07:56
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 12,202 ms
コンパイル使用メモリ 432,416 KB
実行使用メモリ 82,292 KB
最終ジャッジ日時 2024-11-29 06:55:39
合計ジャッジ時間 24,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
54,872 KB
testcase_01 AC 270 ms
54,672 KB
testcase_02 AC 275 ms
54,840 KB
testcase_03 AC 272 ms
54,792 KB
testcase_04 AC 286 ms
54,968 KB
testcase_05 AC 281 ms
54,764 KB
testcase_06 AC 278 ms
54,656 KB
testcase_07 AC 283 ms
55,016 KB
testcase_08 AC 280 ms
54,996 KB
testcase_09 AC 275 ms
54,848 KB
testcase_10 AC 288 ms
54,844 KB
testcase_11 AC 289 ms
54,896 KB
testcase_12 AC 270 ms
54,724 KB
testcase_13 AC 272 ms
54,936 KB
testcase_14 AC 275 ms
54,664 KB
testcase_15 AC 271 ms
54,940 KB
testcase_16 AC 275 ms
54,776 KB
testcase_17 AC 550 ms
71,684 KB
testcase_18 AC 584 ms
72,172 KB
testcase_19 AC 472 ms
70,220 KB
testcase_20 AC 492 ms
72,904 KB
testcase_21 AC 483 ms
68,092 KB
testcase_22 AC 490 ms
71,304 KB
testcase_23 AC 502 ms
74,672 KB
testcase_24 AC 490 ms
69,428 KB
testcase_25 AC 484 ms
68,916 KB
testcase_26 AC 480 ms
72,132 KB
testcase_27 AC 484 ms
76,268 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