結果

問題 No.672 最長AB列
ユーザー torus711torus711
提出日時 2019-01-26 16:48:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-09-16 05:53:47
合計ジャッジ時間 4,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 74 ms
12,032 KB
testcase_03 AC 73 ms
12,160 KB
testcase_04 WA -
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 74 ms
12,032 KB
testcase_07 AC 72 ms
12,160 KB
testcase_08 AC 74 ms
12,032 KB
testcase_09 AC 305 ms
38,400 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 323 ms
40,576 KB
testcase_14 WA -
testcase_15 AC 310 ms
40,448 KB
testcase_16 AC 312 ms
40,320 KB
testcase_17 AC 308 ms
38,400 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
end

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

puts res
0