結果
問題 |
No.3210 Fixed Sign Sequense
|
ユーザー |
|
提出日時 | 2025-07-25 21:49:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 428 bytes |
コンパイル時間 | 306 ms |
コンパイル使用メモリ | 82,604 KB |
実行使用メモリ | 86,720 KB |
最終ジャッジ日時 | 2025-07-25 21:49:12 |
合計ジャッジ時間 | 3,772 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 WA * 24 |
ソースコード
n=int(input()) s=input().split("0") ans=1 p=0 m=0 for i,si in enumerate(s): if len(si)==0: ans=max(ans,m+1) else: np=0 nm=0 for sii in si: if sii=="-": nm+=1 else: np+=1 if i==0: ans=max(ans,nm) ans=max(ans,np) else: ans=max(ans,m+np+1) m=nm p=np print(ans)