結果
| 問題 |
No.725 木は明らかに森である
|
| コンテスト | |
| ユーザー |
hiyori
|
| 提出日時 | 2019-02-08 18:44:04 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 763 bytes |
| コンパイル時間 | 585 ms |
| コンパイル使用メモリ | 65,152 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 14:27:06 |
| 合計ジャッジ時間 | 1,031 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
#include<iostream>
#include<stdlib.h>
#include<string>
using namespace std;
void run();
void change_forest(string s, string sub_str);
int main()
{
run();
return EXIT_SUCCESS;
}
void run()
{
string s,sub_str="treeone";
cin>>s;
if(s.length()<sub_str.length()){
cout<<s<<endl;
}
else{
change_forest(s,sub_str);
}
}
void change_forest(string s, string sub_str)
{
int sub_l = sub_str.length();
for(int i=0;i<s.length();i++){
for(int j=0;j<sub_l;j++){
if(s[i+j]!=sub_str[j]){break;}
else if(j==sub_l-1&&s[i+j]==sub_str[j]){
s.replace(i,sub_l,"forest");
//cout<<s<<endl;
i+=5;
}
}
}
cout<<s<<endl;
}
hiyori