結果
| 問題 |
No.418 ミンミンゼミ
|
| コンテスト | |
| ユーザー |
h_noson
|
| 提出日時 | 2016-09-16 19:00:56 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 1,082 bytes |
| コンパイル時間 | 688 ms |
| コンパイル使用メモリ | 81,616 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-16 01:24:01 |
| 合計ジャッジ時間 | 1,486 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 25 |
ソースコード
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <iomanip>
#include <cassert>
using namespace std;
#define GET_ARG(a,b,c,F,...) F
#define REP3(i,s,e) for (i = s; i <= e; i++)
#define REP2(i,n) REP3 (i,0,(int)(n)-1)
#define REP(...) GET_ARG (__VA_ARGS__,REP3,REP2) (__VA_ARGS__)
#define RREP3(i,s,e) for (i = s; i >= e; i--)
#define RREP2(i,n) RREP3 (i,(int)(n)-1,0)
#define RREP(...) GET_ARG (__VA_ARGS__,RREP3,RREP2) (__VA_ARGS__)
#define DEBUG(x) cerr << #x ": " << x << endl
int main(void) {
string s;
cin >> s;
int now = 0, ans = 0;
for (auto c: s) {
if (now == 0) {
if (c == 'm')
now++;
}
else if (now == 1) {
if (c == 'i')
now++;
else
now--;
}
else if (now == 2) {
if (c == 'n') {
ans++;
now = 0;
}
else if (c != '-')
now = 0;
}
}
cout << ans << endl;
return 0;
}
h_noson