結果

問題 No.1765 While Shining
ユーザー 箱星箱星
提出日時 2021-10-21 21:27:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 10,170 ms
コンパイル使用メモリ 442,704 KB
実行使用メモリ 64,004 KB
最終ジャッジ日時 2024-06-29 17:46:30
合計ジャッジ時間 19,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
49,720 KB
testcase_01 AC 244 ms
49,868 KB
testcase_02 AC 247 ms
49,724 KB
testcase_03 AC 254 ms
49,872 KB
testcase_04 AC 250 ms
50,040 KB
testcase_05 AC 253 ms
49,972 KB
testcase_06 AC 249 ms
49,896 KB
testcase_07 AC 264 ms
49,808 KB
testcase_08 AC 258 ms
49,952 KB
testcase_09 AC 376 ms
58,832 KB
testcase_10 AC 395 ms
63,076 KB
testcase_11 AC 378 ms
61,656 KB
testcase_12 AC 384 ms
62,484 KB
testcase_13 AC 387 ms
61,540 KB
testcase_14 AC 386 ms
63,916 KB
testcase_15 AC 398 ms
64,004 KB
testcase_16 AC 383 ms
63,668 KB
testcase_17 AC 394 ms
63,844 KB
testcase_18 AC 401 ms
63,684 KB
testcase_19 AC 381 ms
63,812 KB
testcase_20 AC 395 ms
63,876 KB
testcase_21 AC 394 ms
63,864 KB
testcase_22 AC 403 ms
63,696 KB
testcase_23 AC 418 ms
63,924 KB
testcase_24 AC 407 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val a = IntArray(n) { nextInt() }
    val b = IntArray(n) { i -> if (i % 2 == 0) a[i] else 1 - a[i] }
    val c = IntArray(n) { 0 }
    var streak = 1
    var prev = -1
    for (i in n - 1 downTo 0) {
        if (i == n - 1) {
            streak = 0
            prev = b[i]
        } else if (b[i] != prev) {
            prev = b[i]
            streak = 1
        } else {
            streak++
        }
        c[i] = streak
    }
    var ans = 0L
    for (i in 0 until n - 1) {
        if (a[i] == 1) ans += c[i]
    }
    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