結果
| 問題 | No.805 UMG |
| コンテスト | |
| ユーザー |
risujiroh
|
| 提出日時 | 2019-03-22 21:24:03 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 52 ms / 2,000 ms |
| コード長 | 508 bytes |
| コンパイル時間 | 1,413 ms |
| コンパイル使用メモリ | 167,540 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-18 13:11:35 |
| 合計ジャッジ時間 | 2,442 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;
int main() {
cin.tie(nullptr); ios::sync_with_stdio(false);
int n; cin >> n;
string s; cin >> s;
int res = 0;
for (int x = 1; x <= n; ++x) {
for (int j = 0; j < n; ++j) {
int i = j - x, k = j + x;
if (i < 0 or k >= n) continue;
res += s[i] == 'U' and s[j] == 'M' and s[k] == 'G';
}
}
cout << res << '\n';
}
risujiroh