結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー roiti46
提出日時 2015-05-08 22:44:38
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 11:37:08
合計ジャッジ時間 5,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

def getmax(s):
    res = 0
    for i in xrange(46):
        cnt = 0
        for si in s:
            if si == "o": cnt += 1
            else:
                res = max(res, cnt)
                cnt = 0
        res = max(res, cnt)
    return res
    
D = int(raw_input())
s = ["x"] * 16 + list(raw_input() + raw_input()) + ["x"] * 16
ans = getmax(s)
for d in xrange(1, D + 1):
    for i in xrange(46):
        if "xo" in s[i:i + d] and "ox" in s[i:i + d]: continue
        ss = s[:]
        ss[i:i + d] = "o" * d
        ans = max(ans, getmax(ss))
print ans
0