結果
問題 | No.418 ミンミンゼミ |
ユーザー |
![]() |
提出日時 | 2020-06-20 16:49:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 496 bytes |
コンパイル時間 | 1,412 ms |
コンパイル使用メモリ | 167,828 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 17:25:42 |
合計ジャッジ時間 | 2,609 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;typedef long double ld;int main(int argc, char *argv[]) { ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);string s;cin>>s;int ans=0;for(int i=0;i<s.size()-2;i++){if(s[i]=='m'&&s[i+1]=='i'){for(int j=i+2;j<s.size();j++){if(s[j]=='-')continue;else if(s[j]=='n'){ans++;break;}else break;}}}cout<<ans<<endl;return 0;}