結果
問題 | No.342 一番ワロタww |
ユーザー | koyumeishi |
提出日時 | 2016-02-12 22:50:26 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 572 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-09-22 04:46:20 |
合計ジャッジ時間 | 2,315 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,160 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 87 ms
12,416 KB |
testcase_15 | AC | 88 ms
12,160 KB |
testcase_16 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
#using : utf-8 #encoding : utf-8 s = gets.chomp ans = 0 len = 0 con = false dot = "w" 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+1] end end end if ans == 0 then puts "" end