結果

問題 No.944 煎っぞ!
ユーザー qszhuqszhu
提出日時 2022-10-07 19:59:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 527 ms / 3,000 ms
コード長 1,194 bytes
コンパイル時間 16,094 ms
コンパイル使用メモリ 438,252 KB
実行使用メモリ 65,508 KB
最終ジャッジ日時 2024-06-12 03:38:17
合計ジャッジ時間 34,889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
64,764 KB
testcase_01 AC 527 ms
64,768 KB
testcase_02 AC 497 ms
64,892 KB
testcase_03 AC 507 ms
64,952 KB
testcase_04 AC 500 ms
64,884 KB
testcase_05 AC 503 ms
65,036 KB
testcase_06 AC 515 ms
64,636 KB
testcase_07 AC 513 ms
64,792 KB
testcase_08 AC 513 ms
64,912 KB
testcase_09 AC 519 ms
64,780 KB
testcase_10 AC 363 ms
55,388 KB
testcase_11 AC 422 ms
57,276 KB
testcase_12 AC 409 ms
56,420 KB
testcase_13 AC 361 ms
55,200 KB
testcase_14 AC 408 ms
57,276 KB
testcase_15 AC 410 ms
56,156 KB
testcase_16 AC 352 ms
55,452 KB
testcase_17 AC 358 ms
55,432 KB
testcase_18 AC 413 ms
57,224 KB
testcase_19 AC 405 ms
57,412 KB
testcase_20 AC 501 ms
65,508 KB
testcase_21 AC 505 ms
65,456 KB
testcase_22 AC 513 ms
64,888 KB
testcase_23 AC 500 ms
64,992 KB
testcase_24 AC 505 ms
64,900 KB
testcase_25 AC 498 ms
64,820 KB
testcase_26 AC 510 ms
64,936 KB
testcase_27 AC 509 ms
65,148 KB
testcase_28 AC 357 ms
55,496 KB
testcase_29 AC 349 ms
55,368 KB
testcase_30 AC 512 ms
65,248 KB
testcase_31 AC 501 ms
64,728 KB
testcase_32 AC 506 ms
64,864 KB
testcase_33 AC 504 ms
64,740 KB
testcase_34 AC 510 ms
65,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.system.exitProcess

val br = System.`in`.bufferedReader()

fun readLine(): String? = br.readLine()
fun readString() = readLine()!!
fun readInt() = readString().toInt()
fun readStrings() = readLine()?.split(" ")?.filter { it.isNotEmpty() } ?: listOf()
fun readInts() = readStrings().map { it.toInt() }.toIntArray()

const val MAX_STACK_SIZE: Long = 128 * 1024 * 1024

fun main() {
    val thread = Thread(null, ::run, "solve", MAX_STACK_SIZE)
    thread.setUncaughtExceptionHandler { _, e -> e.printStackTrace(); exitProcess(1) }
    thread.start()
}

fun run() {
    readInt()
    val a = readInts()
    output(solve(a))
}

fun solve(a: IntArray): Int {
    val sum = a.sum()

    fun canDivide(target: Int): Boolean {
        var s = 0
        for (ai in a) {
            s += ai
            if (s == target) s = 0
            else if (s > target) return false
        }
        return s == 0
    }

    var res = 0
    var i = 1
    while (i * i <= sum) {
        if (sum % i == 0) {
            if (canDivide(i)) res = maxOf(res, sum / i)
            if (canDivide(sum / i)) res = maxOf(res, i)
        }
        i++
    }
    return res
}

fun output(res: Int) = println(res)
0