結果

問題 No.1433 Two color sequence
ユーザー face4face4
提出日時 2021-04-08 23:53:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 916 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 12,713 ms
コンパイル使用メモリ 431,408 KB
実行使用メモリ 105,600 KB
最終ジャッジ日時 2024-06-24 02:27:58
合計ジャッジ時間 32,562 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,856 KB
testcase_01 AC 312 ms
57,028 KB
testcase_02 AC 311 ms
56,640 KB
testcase_03 AC 682 ms
78,052 KB
testcase_04 AC 685 ms
78,116 KB
testcase_05 AC 311 ms
56,868 KB
testcase_06 AC 313 ms
56,856 KB
testcase_07 AC 309 ms
56,820 KB
testcase_08 AC 888 ms
105,192 KB
testcase_09 AC 836 ms
105,584 KB
testcase_10 AC 822 ms
93,188 KB
testcase_11 AC 848 ms
93,192 KB
testcase_12 AC 884 ms
105,464 KB
testcase_13 AC 827 ms
105,448 KB
testcase_14 AC 879 ms
105,460 KB
testcase_15 AC 881 ms
105,600 KB
testcase_16 AC 867 ms
105,548 KB
testcase_17 AC 869 ms
105,504 KB
testcase_18 AC 864 ms
105,564 KB
testcase_19 AC 916 ms
105,536 KB
testcase_20 AC 890 ms
105,556 KB
testcase_21 AC 883 ms
105,436 KB
testcase_22 AC 909 ms
105,488 KB
testcase_23 AC 890 ms
105,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val n = readLine()!!.toInt()
    val s = readLine()!!
    val a = mutableListOf<Long>()
    a += readLine()!!.split(" ").map{it.toLong()}
    for(i in 0..n-1){
        if(s[i] == 'R')   a[i] = a[i] * -1L
        if(i > 0)   a[i] += a[i-1]
    }
    var answer = Math.abs(a[0])
    var befmin = Math.min(0, a[0])
    var befmax = Math.max(0, a[0])
    for(i in 1..n-1){
        answer = Math.max(answer, Math.max(Math.abs(befmin-a[i]), Math.abs(befmax-a[i])))
        befmin = Math.min(befmin, a[i])
        befmax = Math.max(befmax, a[i])
    }
    println(answer)
}
0