結果

問題 No.418 ミンミンゼミ
ユーザー Gamer13Gamer13
提出日時 2017-08-30 20:10:47
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 462 bytes
コンパイル時間 1,265 ms
コンパイル使用メモリ 158,312 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-11-06 14:33:07
合計ジャッジ時間 5,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 1
other TLE * 1 -- * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#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) {
			++mi_n;
			fI = eI;
		}
	}
	cout << mi_n << endl;

}
int main() {
	ios::sync_with_stdio(false);
	solve();
	return 0;
}
0