結果
問題 | No.2276 I Want AC |
ユーザー | Yaowei Lyu |
提出日時 | 2023-04-21 21:28:36 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 624 bytes |
コンパイル時間 | 2,706 ms |
コンパイル使用メモリ | 244,776 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 14:56:36 |
合計ジャッジ時間 | 4,547 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 56 |
ソースコード
#include <bits/stdc++.h> using namespace std; using LL = long long; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; string s; cin >> n >> s; LL ans = 0, c = 0; for (int i = 0, a = 0; i < n; i += 1) { if (s[i] == 'A') { a += 1; } else { c += 1; ans += a; } } for (int i = 0, a = 0; i < n; i += 1) { if (s[i] != 'A') { c -= 1; } if (s[i] == '?') { ans += max(c - a, 0LL); } if (s[i] != 'C') { a += 1; } } cout << ans; }