結果

問題 No.3114 0→1
ユーザー Rira
提出日時 2025-04-20 14:39:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 193,248 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-20 14:39:13
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    string S;
    cin >> N >> S;

    int max_sum = 0;
    int current = 0;

    for (char c : S) {
        int val = (c == '0' ? 1 : -1);
        current = max(val, current + val);
        max_sum = max(max_sum, current);
    }

    cout << max_sum << '\n';
    return 0;
}
0