結果
| 問題 | No.290 1010 |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-03-17 00:02:55 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 5,000 ms |
| コード長 | 511 bytes |
| 記録 | |
| コンパイル時間 | 2,009 ms |
| コンパイル使用メモリ | 330,584 KB |
| 実行使用メモリ | 5,760 KB |
| 最終ジャッジ日時 | 2026-07-07 05:06:38 |
| 合計ジャッジ時間 | 3,777 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
#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;
}
a01sa01to