結果

問題 No.1715 Dinner 2
ユーザー 箱星箱星
提出日時 2021-10-22 21:45:59
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,487 bytes
コンパイル時間 13,499 ms
コンパイル使用メモリ 455,360 KB
実行使用メモリ 92,108 KB
最終ジャッジ日時 2024-09-23 05:10:10
合計ジャッジ時間 39,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
57,804 KB
testcase_01 AC 312 ms
92,108 KB
testcase_02 AC 307 ms
61,308 KB
testcase_03 AC 304 ms
54,284 KB
testcase_04 AC 310 ms
54,356 KB
testcase_05 AC 311 ms
54,468 KB
testcase_06 AC 306 ms
54,312 KB
testcase_07 AC 311 ms
54,392 KB
testcase_08 AC 311 ms
54,280 KB
testcase_09 AC 309 ms
54,244 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,581 ms
58,052 KB
testcase_15 TLE -
testcase_16 AC 1,491 ms
62,352 KB
testcase_17 AC 1,054 ms
62,404 KB
testcase_18 AC 330 ms
61,964 KB
testcase_19 AC 325 ms
62,396 KB
testcase_20 AC 315 ms
62,000 KB
testcase_21 AC 307 ms
61,956 KB
testcase_22 AC 323 ms
62,108 KB
testcase_23 AC 334 ms
62,232 KB
testcase_24 AC 319 ms
61,872 KB
testcase_25 AC 362 ms
62,340 KB
testcase_26 AC 348 ms
62,228 KB
testcase_27 AC 347 ms
62,184 KB
testcase_28 AC 351 ms
62,276 KB
testcase_29 AC 347 ms
62,068 KB
testcase_30 AC 350 ms
62,280 KB
testcase_31 AC 348 ms
62,196 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val d = nextInt()
    val (p, q) = Array(n) { nextInt() to nextInt() }.unzip().toList().map { it.toTypedArray() }
    var ans = Long.MIN_VALUE
    for (i in 0 until n) {
        for (j in 0 until n) {
            if (i == j) continue
            var now = 0L
            var min = 0L
            for (k in 0 until d) {
                if (k and 1 == 0) {
                    now -= p[i]
                    min = minOf(min, now)
                    now += q[i]
                } else {
                    now -= p[j]
                    min = minOf(min, now)
                    now += q[j]
                }
            }
            ans = maxOf(ans, min)
        }
    }
    println(ans)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0