結果

問題 No.341 沈黙の期間
ユーザー トミートミー
提出日時 2024-05-17 20:36:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,628 KB
最終ジャッジ日時 2024-05-17 20:36:11
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,324 KB
testcase_01 AC 35 ms
53,064 KB
testcase_02 AC 34 ms
53,508 KB
testcase_03 AC 50 ms
52,768 KB
testcase_04 AC 35 ms
52,312 KB
testcase_05 AC 34 ms
52,904 KB
testcase_06 AC 32 ms
52,220 KB
testcase_07 AC 32 ms
51,680 KB
testcase_08 AC 32 ms
52,432 KB
testcase_09 AC 33 ms
52,508 KB
testcase_10 AC 33 ms
53,628 KB
testcase_11 AC 32 ms
52,740 KB
testcase_12 AC 33 ms
52,736 KB
testcase_13 AC 32 ms
52,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    S = input()
    p = "…"
    m = 0
    cnt = 0
    for i, j in enumerate(S):
        if j == p:
            cnt += 1
            m = max(cnt, m)
        else:
            cnt = 0
    print(m)


if __name__ == "__main__":
    main()
0