結果

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

ソースコード

diff #

#include<iostream>

using namespace std;

int main(){

   string S;
   cin>> S;

   int f=0;
   char pre='z';
   int ans=0;
   for(int i=0; i<S.size(); i++){
      char c=S[i];
      if(c=='m'){
         if(f==1){
            f=0;
         }else{

         }
      }else if(c=='i'){
         if(pre=='m'){
            f=1;
         }else{
            f=0;
         }
      }else if(c=='-'){
         if(f==1){

         }else{

         }
      }else if(c=='n'){
         if(f==1){
            ans++;
         }
         f=0;
      }else{
         f=0;
      }
      pre=c;
   }

   cout<< ans<< endl;

   return 0;
}
0