結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-02 18:58:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 265 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 57,412 KB
最終ジャッジ日時 2024-07-16 14:42:49
合計ジャッジ時間 3,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,848 KB
testcase_01 AC 51 ms
56,468 KB
testcase_02 AC 50 ms
55,296 KB
testcase_03 AC 47 ms
56,096 KB
testcase_04 AC 49 ms
55,820 KB
testcase_05 AC 49 ms
56,272 KB
testcase_06 AC 47 ms
56,784 KB
testcase_07 AC 48 ms
56,860 KB
testcase_08 AC 49 ms
56,664 KB
testcase_09 AC 49 ms
56,580 KB
testcase_10 AC 49 ms
55,752 KB
testcase_11 AC 49 ms
55,900 KB
testcase_12 AC 49 ms
56,528 KB
testcase_13 AC 48 ms
55,764 KB
testcase_14 AC 49 ms
56,152 KB
testcase_15 AC 51 ms
56,448 KB
testcase_16 AC 50 ms
55,648 KB
testcase_17 AC 52 ms
56,808 KB
testcase_18 AC 51 ms
55,992 KB
testcase_19 AC 48 ms
56,576 KB
testcase_20 AC 49 ms
55,988 KB
testcase_21 AC 48 ms
55,416 KB
testcase_22 AC 49 ms
57,412 KB
testcase_23 AC 49 ms
55,804 KB
testcase_24 AC 49 ms
55,616 KB
testcase_25 AC 48 ms
55,648 KB
testcase_26 AC 49 ms
56,404 KB
testcase_27 AC 48 ms
56,544 KB
testcase_28 AC 48 ms
55,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
# input = sys.stdin.readline
C = list(input()) + list(input())
ans = 0
for g,r in groupby(C):
    if g=='o':
        ans = max(ans,len(list(r)))
print(ans)
0