結果

問題 No.1433 Two color sequence
ユーザー tatt61880tatt61880
提出日時 2021-03-19 21:56:31
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 147,232 KB
実行使用メモリ 7,516 KB
最終ジャッジ日時 2024-09-16 11:53:49
合計ジャッジ時間 6,394 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 63 ms
7,508 KB
testcase_04 AC 63 ms
7,512 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 109 ms
7,512 KB
testcase_09 AC 109 ms
7,504 KB
testcase_10 AC 105 ms
7,360 KB
testcase_11 AC 106 ms
7,240 KB
testcase_12 AC 109 ms
7,504 KB
testcase_13 AC 108 ms
7,504 KB
testcase_14 AC 111 ms
7,384 KB
testcase_15 AC 111 ms
7,508 KB
testcase_16 AC 111 ms
7,508 KB
testcase_17 AC 110 ms
7,512 KB
testcase_18 AC 111 ms
7,512 KB
testcase_19 AC 111 ms
7,516 KB
testcase_20 AC 111 ms
7,388 KB
testcase_21 AC 108 ms
7,512 KB
testcase_22 AC 108 ms
7,512 KB
testcase_23 AC 111 ms
7,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var s: []char :: cui@input()
	var a: []int :: #[n]int
	var cum: []int :: #[n + 1]int
	for i(0, n - 1)
		do a[i] :: cui@inputInt() * (s[i] = 'R' ?(1, -1))
		do cum[i + 1] :: cum[i] + a[i]
	end for
	
	var ans: int :: cum.max() - cum.min()
	do cui@print("\{ans}\n")
end func
0