結果

問題 No.725 木は明らかに森である
ユーザー Yug_min_nullYug_min_null
提出日時 2021-09-04 00:57:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 2,589 ms
コンパイル使用メモリ 189,568 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 09:35:38
合計ジャッジ時間 2,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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