結果

問題 No.3142 Balancing with O=>X Flip
ユーザー sai
提出日時 2025-05-16 22:02:41
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 2,743 ms
コンパイル使用メモリ 275,708 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-05-16 23:53:49
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  int n;
  std::string s;
  std::cin >> n >> s;
  int cnt = 0;
  for (int i = 0; i < n; i++) {
    if (s[i] == ')') {
      if (cnt == 0) {
        std::cout << "No\n";
        return 0;
      }
      cnt--;
    } else {
      cnt++;
    }
  }
  std::cout << (cnt == 0 ? "Yes\n" : "No\n");
}
0