結果
| 問題 |
No.203 ゴールデン・ウィーク(1)
|
| コンテスト | |
| ユーザー |
あかりき
|
| 提出日時 | 2021-05-24 06:02:57 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 38 ms / 1,000 ms |
| コード長 | 158 bytes |
| コンパイル時間 | 911 ms |
| コンパイル使用メモリ | 82,152 KB |
| 実行使用メモリ | 53,564 KB |
| 最終ジャッジ日時 | 2024-10-12 11:19:02 |
| 合計ジャッジ時間 | 2,583 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 |
ソースコード
c=list(input())+list(input())
ans=[]
ct=0
for i in range(len(c)):
if c[i]=='o':
ct+=1
else:
ans.append(ct)
ct=0
ans.append(ct)
print(max(ans))
あかりき