結果

問題 No.341 沈黙の期間
ユーザー ohana
提出日時 2023-10-23 15:55:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 142 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 65,508 KB
最終ジャッジ日時 2024-09-22 10:25:26
合計ジャッジ時間 1,787 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

L = list(input())
A = []

for k, g in itertools.groupby(L):
    if k == "…":
        A.append(len(list(g)))
print(max(A))
0