結果

問題 No.1534 おなかがいたい
ユーザー a01sa01to
提出日時 2024-08-19 00:25:03
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 3,273 ms
コンパイル使用メモリ 246,736 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-19 00:25:08
合計ジャッジ時間 4,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  string s;
  cin >> s;
  int cnt = -1;
  bool has = false;
  rep(i, s.size()) {
    if (s.substr(i, 4) == "pain") {
      has = true;
      break;
    }
    if (s.substr(i, 3) == "pon") ++cnt;
  }
  cout << (cnt > 0 && has ? cnt : -1) << endl;
  return 0;
}
0