結果

問題 No.290 1010
ユーザー a01sa01to
提出日時 2025-03-17 00:02:55
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 6,609 ms
コンパイル使用メモリ 273,148 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-17 00:03:03
合計ジャッジ時間 5,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int n;
  string s;
  cin >> n >> s;
  bool ok = false;
  ok |= s.contains("00");
  ok |= s.contains("11");
  ok |= s.contains("0101");
  ok |= s.contains("1010");
  cout << (ok ? "YES" : "NO") << '\n';
  return 0;
}
0