結果
問題 |
No.418 ミンミンゼミ
|
ユーザー |
|
提出日時 | 2017-08-30 20:11:22 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 472 bytes |
コンパイル時間 | 1,182 ms |
コンパイル使用メモリ | 158,072 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-16 02:26:35 |
合計ジャッジ時間 | 2,005 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) { ++mi_n; fI = eI; break; } } cout << mi_n << endl; } int main() { ios::sync_with_stdio(false); solve(); return 0; }