結果

問題 No.725 木は明らかに森である
ユーザー Yug_min_null
提出日時 2021-09-04 00:57:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 190,308 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-15 21:19:33
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;

int main() {
  string S; cin >> S;
  string T = "";
  for(int i = 0; i < (int)S.size(); i++){
    T += S[i];
    if(i >= 6 and T.substr(i-6, i+1) == "treeone"){
      T = T.substr(0, i-6) + "forest";
    }
  }
  cout << T << endl;
}
0