結果

問題 No.342 一番ワロタww
ユーザー koyumeishi
提出日時 2016-02-12 23:27:44
言語 Ruby
(3.4.1)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-15 13:13:25
合計ジャッジ時間 2,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#using : utf-8
#encoding : utf-8

s = gets.chomp

ans = 0

len = 0
con = false

dot = "w"

while s.length > 0 && s[0] == dot do
	s = s[1, s.length-1]
end

arr = Array.new(s.length)

for i in 0...s.length do
	arr[i] = -1
	if s[i] == dot then
		if con == true then
			len += 1
			ans = [ans, len].max
		else
			con = true
			len = 1
			ans = [ans, len].max
		end
		arr[i] = 0
		arr[i-len+1] = len
	else
		len = 0
		con = false
	end
end


for i in 1...s.length do
	if arr[i] > 0 then
		if arr[i] == ans then
			x = i-1
			while x > 0 && s[x-1] != dot do
				x -= 1
			end
			puts s[x, i-x]
		end
	end
end

if ans == 0 then
	puts ""
end
0