結果
問題 |
No.725 木は明らかに森である
|
ユーザー |
|
提出日時 | 2018-10-03 16:48:11 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 158 bytes |
コンパイル時間 | 4,480 ms |
コンパイル使用メモリ | 213,800 KB |
最終ジャッジ日時 | 2025-01-06 14:14:31 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 |
ソースコード
#include <iostream> #include <regex> using namespace std; int main() { string s; cin >> s; cout << regex_replace(s, regex("treeone"), "forest") << endl; }