結果

問題 No.1534 おなかがいたい
ユーザー IchimiyaIchimiya
提出日時 2021-06-07 00:04:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 536 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 166,904 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 01:24:30
合計ジャッジ時間 2,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 RE -
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 10 ms
6,944 KB
testcase_18 AC 10 ms
6,944 KB
testcase_19 RE -
testcase_20 AC 12 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define NIL (-1)
#define ll long long
using namespace std;
const double PI = acos(-1.0);

int main() {
	string S;
	cin >> S;

	int s = S.find("pain");
	if (s == string::npos) {
		cout << -1 << endl;
		return 0;
	}
	//cout << s << endl;

	string T = S.substr(0, s);
	//cout << S+T << endl;
	int co = 0;
	for (int i = 0; i < T.size()-2; i++) {
		string t = T.substr(i, 3);
		//cout << t << endl;
		if (t == "pon") co++;
	}
	if (co < 2) {
		cout << -1 << endl;
		return 0;
	}
	cout << co - 1 << endl;

	return 0;
}
0