結果

問題 No.1687 What the Heck?
ユーザー 箱星箱星
提出日時 2021-09-24 22:11:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 1,092 bytes
コンパイル時間 13,854 ms
コンパイル使用メモリ 447,516 KB
実行使用メモリ 73,460 KB
最終ジャッジ日時 2024-07-05 10:43:02
合計ジャッジ時間 22,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
49,592 KB
testcase_01 AC 280 ms
49,648 KB
testcase_02 AC 276 ms
49,956 KB
testcase_03 AC 279 ms
49,640 KB
testcase_04 AC 284 ms
50,036 KB
testcase_05 AC 284 ms
49,920 KB
testcase_06 AC 280 ms
49,712 KB
testcase_07 AC 509 ms
58,184 KB
testcase_08 AC 493 ms
61,828 KB
testcase_09 AC 452 ms
57,964 KB
testcase_10 AC 426 ms
56,068 KB
testcase_11 AC 416 ms
56,176 KB
testcase_12 AC 472 ms
73,372 KB
testcase_13 AC 483 ms
73,300 KB
testcase_14 AC 475 ms
73,056 KB
testcase_15 AC 477 ms
73,460 KB
testcase_16 AC 472 ms
72,852 KB
testcase_17 AC 360 ms
51,768 KB
testcase_18 AC 476 ms
73,260 KB
testcase_19 AC 283 ms
49,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextInt() - 1 }
    val pos = Array(n) { 0 }
    for (i in 0 until n) {
        pos[a[i]] = i
    }
    var max = 0L
    var v = n * (n + 1L) / 2
    for (i in n - 1 downTo 0) {
        v -= 2 * (pos[i] + 1)
        max = maxOf(max, v)
        v += pos[i] + 1
    }
    println(max)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", 1.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