結果

問題 No.672 最長AB列
ユーザー torus711torus711
提出日時 2019-01-26 16:50:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-09-16 05:58:08
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,032 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 89 ms
12,032 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 89 ms
12,288 KB
testcase_09 AC 361 ms
38,528 KB
testcase_10 AC 357 ms
38,272 KB
testcase_11 AC 358 ms
38,400 KB
testcase_12 AC 358 ms
40,320 KB
testcase_13 AC 358 ms
40,576 KB
testcase_14 AC 359 ms
40,448 KB
testcase_15 AC 360 ms
40,704 KB
testcase_16 AC 357 ms
40,320 KB
testcase_17 AC 359 ms
38,400 KB
testcase_18 AC 354 ms
41,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.strip

L = S.size

occurrences = Array.new( L * 2 + 2 ) { Array.new }
occurrences[L] << 0

depth = 0
L.times do |i|
	depth += if S[i] == 'A' then 1 else -1 end
	occurrences[ L + depth ] << i + 1
end

res = 0
occurrences.each do |ary|
	if !ary.empty? then
		res = [ res, ary.last - ary.first ].max
	end
end

puts res
0