結果

問題 No.725 木は明らかに森である
ユーザー tac
提出日時 2019-07-20 13:18:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 5,910 ms
コンパイル使用メモリ 214,992 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-29 17:27:22
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<regex>

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    string str;
    cin >> str;
    cout << regex_replace(str, regex("treeone"), "forest") << endl;
}
0