結果

問題 No.341 沈黙の期間
ユーザー ohanaohana
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,080 KB
testcase_01 AC 38 ms
52,436 KB
testcase_02 AC 38 ms
53,676 KB
testcase_03 AC 38 ms
52,660 KB
testcase_04 AC 38 ms
52,520 KB
testcase_05 AC 38 ms
53,020 KB
testcase_06 AC 37 ms
53,008 KB
testcase_07 AC 38 ms
53,420 KB
testcase_08 AC 38 ms
52,588 KB
testcase_09 AC 38 ms
52,556 KB
testcase_10 AC 38 ms
52,880 KB
testcase_11 RE -
testcase_12 AC 38 ms
52,660 KB
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

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