結果

問題 No.418 ミンミンゼミ
ユーザー Hana87870705Hana87870705
提出日時 2016-09-09 23:37:16
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 525 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 55,044 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-16 01:17:34
合計ジャッジ時間 1,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

using namespace std;

int main(){
    string s;
    int ans=0;
    bool mi=false;
    cin >> s;
    for(int i=0;i<s.length()+1;i++){
        if(i<=s.length()-2&&s[i]=='m'&&s[i+1]=='i'){
            //cout << "a";
            mi=true;
            i++;
        }else if(mi){
            if(s[i]=='n'){
              //  cout << "c";
                ans++;
                mi=false;
            }else if(s[i]!='-'){
                mi=false;
            }
        }
    }
    cout <<ans << endl;
return 0;
}
0