結果

問題 No.418 ミンミンゼミ
ユーザー kurenai3110kurenai3110
提出日時 2016-09-09 22:29:38
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 323 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 56,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-16 01:15:02
合計ジャッジ時間 1,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main()
{
	char c;
	int n=0;
	int cnt = 0;
	while (cin>>c) {
		if (c == 'm'&&n == 0) n = 1;
		else if (c == 'i'&&n == 1) n = 2;
		else if (c == '-'&&n == 2) continue;
		else if (c == 'n'&&n == 2) {
			cnt++;
			n = 0;
		}
		else n = 0;
	}

	cout << cnt << endl;

    return 0;
}
0