結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー GrayCoder
提出日時 2017-10-09 01:52:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 263 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-18 10:16:12
合計ジャッジ時間 1,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    C = ''.join([input() for _ in [0] * 2])

    i = 0
    max_ = 0
    for s in C:
        if s == 'o':
            i += 1
        else:
            max_ = max(max_, i)
            i = 0
    else:
        max_ = max(max_, i)

    print(max_)

main()
0