結果

問題 No.944 煎っぞ!
ユーザー qszhuqszhu
提出日時 2022-10-07 19:27:05
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,189 bytes
コンパイル時間 16,586 ms
コンパイル使用メモリ 446,632 KB
実行使用メモリ 65,680 KB
最終ジャッジ日時 2024-06-12 02:54:11
合計ジャッジ時間 28,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
64,900 KB
testcase_01 AC 413 ms
64,688 KB
testcase_02 AC 427 ms
64,792 KB
testcase_03 AC 420 ms
64,760 KB
testcase_04 AC 438 ms
64,904 KB
testcase_05 AC 430 ms
64,856 KB
testcase_06 AC 424 ms
64,836 KB
testcase_07 AC 420 ms
64,736 KB
testcase_08 AC 420 ms
65,012 KB
testcase_09 AC 464 ms
65,016 KB
testcase_10 AC 312 ms
55,564 KB
testcase_11 AC 367 ms
57,148 KB
testcase_12 AC 338 ms
56,520 KB
testcase_13 AC 295 ms
55,292 KB
testcase_14 AC 350 ms
57,020 KB
testcase_15 AC 340 ms
56,208 KB
testcase_16 WA -
testcase_17 AC 305 ms
55,184 KB
testcase_18 AC 345 ms
57,276 KB
testcase_19 AC 337 ms
57,200 KB
testcase_20 AC 422 ms
65,336 KB
testcase_21 AC 415 ms
65,680 KB
testcase_22 AC 422 ms
64,864 KB
testcase_23 AC 425 ms
64,780 KB
testcase_24 AC 430 ms
64,860 KB
testcase_25 AC 417 ms
65,112 KB
testcase_26 AC 421 ms
64,796 KB
testcase_27 AC 432 ms
65,236 KB
testcase_28 AC 287 ms
55,348 KB
testcase_29 AC 290 ms
55,308 KB
testcase_30 AC 427 ms
65,484 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:25:11: warning: parameter 'N' is never used
fun solve(N: Int, a: IntArray): Int {
          ^
Main.kt:29:13: warning: name shadowed: sum
        var sum = 0
            ^

ソースコード

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 sum = a.sum()

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

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

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