結果
問題 | No.418 ミンミンゼミ |
ユーザー |
|
提出日時 | 2017-08-30 19:59:55 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 705 bytes |
コンパイル時間 | 1,519 ms |
コンパイル使用メモリ | 158,044 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-16 02:26:32 |
合計ジャッジ時間 | 2,294 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define FORR(i,l,n) for(int (i)=l;(i)<(int)(n);++(i)) void solve() { std::string S; std::cin >> S; int mi_n= 0; int fI = 0; while ((fI = S.find("mi",fI) )!= string::npos) { int eI = 0; while ((eI = S.find('n',fI)) != string::npos) { if (eI + 1 < S.length()){ if (S[eI + 1] != 'n') { ++mi_n; fI = eI; break; } else { fI = eI; break; } } else if (eI + 1 >= S.length()) { ++mi_n; fI = eI; break; } else { fI = eI; break; } } } cout << mi_n << endl; } int main() { ios::sync_with_stdio(false); solve(); return 0; }