結果

問題 No.607 開通777年記念
ユーザー qszhuqszhu
提出日時 2022-10-08 23:23:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 791 ms / 2,000 ms
コード長 1,159 bytes
コンパイル時間 12,445 ms
コンパイル使用メモリ 445,140 KB
実行使用メモリ 94,504 KB
最終ジャッジ日時 2024-06-23 01:10:16
合計ジャッジ時間 18,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
59,100 KB
testcase_01 AC 271 ms
59,096 KB
testcase_02 AC 294 ms
58,860 KB
testcase_03 AC 271 ms
58,852 KB
testcase_04 AC 275 ms
58,812 KB
testcase_05 AC 268 ms
58,992 KB
testcase_06 AC 266 ms
58,860 KB
testcase_07 AC 495 ms
83,400 KB
testcase_08 AC 271 ms
58,764 KB
testcase_09 AC 309 ms
61,016 KB
testcase_10 AC 318 ms
61,040 KB
testcase_11 AC 791 ms
94,504 KB
testcase_12 AC 700 ms
93,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.system.exitProcess

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

fun readLine(): String? = br.readLine()
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 (_, M) = readInts()
    val a = Array(M) { readInts() }
    output(solve(M, a))
}

fun solve(M: Int, a: Array<IntArray>): Boolean {
    val row = a[0].clone()
    fun has777(): Boolean {
        var i = 0
        var sum = 0
        for (j in row.indices) {
            sum += row[j]
            while (i < j && sum > 777) sum -= row[i++]
            if (sum == 777) return true
        }
        return false
    }

    if (has777()) return true
    for (i in 1 until M) {
        for (j in row.indices) row[j] += a[i][j]
        if (has777()) return true
    }
    return false
}

fun output(res: Boolean) = println(if (res) "YES" else "NO")
0