結果

問題 No.944 煎っぞ!
ユーザー qszhuqszhu
提出日時 2022-10-07 19:56:28
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,194 bytes
コンパイル時間 17,302 ms
コンパイル使用メモリ 446,376 KB
実行使用メモリ 65,532 KB
最終ジャッジ日時 2024-06-12 03:33:20
合計ジャッジ時間 31,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 490 ms
64,932 KB
testcase_01 AC 503 ms
64,792 KB
testcase_02 AC 471 ms
64,812 KB
testcase_03 AC 470 ms
65,040 KB
testcase_04 AC 477 ms
64,912 KB
testcase_05 AC 472 ms
64,860 KB
testcase_06 AC 476 ms
65,100 KB
testcase_07 AC 470 ms
64,812 KB
testcase_08 AC 480 ms
64,868 KB
testcase_09 AC 487 ms
64,588 KB
testcase_10 AC 341 ms
55,492 KB
testcase_11 AC 387 ms
57,344 KB
testcase_12 AC 432 ms
56,272 KB
testcase_13 AC 339 ms
55,460 KB
testcase_14 AC 393 ms
57,236 KB
testcase_15 AC 381 ms
56,312 KB
testcase_16 AC 331 ms
55,488 KB
testcase_17 AC 335 ms
55,192 KB
testcase_18 AC 394 ms
57,256 KB
testcase_19 AC 391 ms
57,024 KB
testcase_20 AC 474 ms
65,432 KB
testcase_21 AC 472 ms
65,532 KB
testcase_22 AC 476 ms
64,888 KB
testcase_23 AC 472 ms
64,796 KB
testcase_24 AC 482 ms
64,956 KB
testcase_25 AC 483 ms
64,628 KB
testcase_26 AC 481 ms
64,712 KB
testcase_27 AC 483 ms
65,064 KB
testcase_28 AC 337 ms
55,168 KB
testcase_29 AC 341 ms
55,408 KB
testcase_30 AC 486 ms
65,384 KB
testcase_31 WA -
testcase_32 AC 485 ms
64,724 KB
testcase_33 AC 495 ms
64,772 KB
testcase_34 AC 485 ms
64,740 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 = 1
    var i = 2
    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