結果
| 問題 | No.341 沈黙の期間 |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2022-04-08 11:09:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 83 bytes |
| 記録 | |
| コンパイル時間 | 799 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,596 KB |
| 最終ジャッジ日時 | 2026-05-22 07:42:40 |
| 合計ジャッジ時間 | 3,051 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 RE * 2 |
ソースコード
import re
S = input()
ans = max(len(s) for s in re.findall('…+', S))
print(ans)
norioc