結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー threepipes_s
提出日時 2015-10-04 15:49:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 139 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-18 09:30:36
合計ジャッジ時間 1,911 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

c = 0
res = 0
for i in input()+input():
    if i=='o':
        c += 1
    else:
        res = max(c, res)
        c = 0
print(max(res, c))
0