結果
| 問題 |
No.418 ミンミンゼミ
|
| コンテスト | |
| ユーザー |
kichirb3
|
| 提出日時 | 2018-02-27 13:06:04 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 517 bytes |
| コンパイル時間 | 4,588 ms |
| コンパイル使用メモリ | 218,992 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-16 02:32:37 |
| 合計ジャッジ時間 | 5,324 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 25 |
ソースコード
// No.418 ミンミンゼミ
// https://yukicoder.me/problems/no/418
//
#include <iostream>
#include <vector>
#include <string>
#include <regex>
using namespace std;
int solve(string &S);
int main() {
string S;
cin >> S;
int ans = solve(S);
cout << ans << endl;
}
int solve(string &S) {
int ans = 0;
regex rx(R"(mi-*n)");
sregex_token_iterator it(S.begin(), S.end(), rx, -1);
sregex_token_iterator end;
while (it != end) {
it++;
ans++;
}
return ans;
}
kichirb3