結果

問題 No.944 煎っぞ!
ユーザー qszhuqszhu
提出日時 2022-10-07 19:21:29
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,189 bytes
コンパイル時間 16,801 ms
コンパイル使用メモリ 457,764 KB
実行使用メモリ 64,156 KB
最終ジャッジ日時 2024-06-12 02:45:26
合計ジャッジ時間 35,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
63,512 KB
testcase_01 AC 506 ms
63,552 KB
testcase_02 AC 516 ms
63,588 KB
testcase_03 AC 536 ms
63,504 KB
testcase_04 AC 502 ms
63,508 KB
testcase_05 AC 508 ms
63,220 KB
testcase_06 AC 511 ms
63,428 KB
testcase_07 AC 529 ms
63,692 KB
testcase_08 AC 519 ms
63,332 KB
testcase_09 AC 505 ms
63,460 KB
testcase_10 AC 344 ms
52,292 KB
testcase_11 AC 403 ms
54,396 KB
testcase_12 AC 391 ms
53,444 KB
testcase_13 AC 327 ms
52,152 KB
testcase_14 AC 403 ms
54,224 KB
testcase_15 AC 381 ms
52,992 KB
testcase_16 WA -
testcase_17 AC 325 ms
51,988 KB
testcase_18 AC 397 ms
54,408 KB
testcase_19 AC 396 ms
54,616 KB
testcase_20 AC 524 ms
64,156 KB
testcase_21 AC 518 ms
64,004 KB
testcase_22 AC 496 ms
63,332 KB
testcase_23 AC 508 ms
63,628 KB
testcase_24 AC 532 ms
63,392 KB
testcase_25 AC 517 ms
63,632 KB
testcase_26 AC 509 ms
63,220 KB
testcase_27 AC 554 ms
63,604 KB
testcase_28 AC 326 ms
52,008 KB
testcase_29 AC 325 ms
51,884 KB
testcase_30 AC 525 ms
63,968 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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() {
    val N = readInt()
    val a = readInts()
    output(solve(N, a))
}

fun solve(N: Int, a: IntArray): Int {
    val preSum = a.scan(0, Int::plus)

    fun canDivide(target: Int): Boolean {
        var i = 0
        for (j in 1..N) {
            val sum = preSum[j] - preSum[i]
            if (sum == target) i = j
            else if (sum > target) return false
        }
        return true
    }

    var res = 1
    var i = 2
    while (i * i <= preSum.last()) {
        val sum = preSum.last() / i
        if (canDivide(sum)) res = i
        i++
    }
    return res
}

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