結果
| 問題 | No.3500 01 String |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-04-18 08:47:49 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 4 ms / 2,000 ms |
| + 482µs | |
| コード長 | 589 bytes |
| 記録 | |
| コンパイル時間 | 2,014 ms |
| コンパイル使用メモリ | 333,984 KB |
| 実行使用メモリ | 9,924 KB |
| 最終ジャッジ日時 | 2026-09-08 09:51:59 |
| 合計ジャッジ時間 | 4,122 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
const int mod = 998244353;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
string a;
cin >> n >> a;
int ans = 1;
int i = 0;
while (i < n && a[i] == '1') {
i += 1;
}
while (i < n) {
int cnt0 = 0, cnt1 = 0;
while (i < n && a[i] == '0') {
i += 1;
cnt0 += 1;
}
while (i < n && a[i] == '1') {
i += 1;
cnt1 += 1;
}
if (cnt0 == 0 || cnt1 == 0) {
break;
}
ans = int64_t(ans) * (cnt0 + cnt1 + 1) % mod;
}
cout << ans << '\n';
return 0;
}