結果

問題 No.725 木は明らかに森である
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-13 21:31:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 75,688 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-09-25 04:40:48
合計ジャッジ時間 3,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,040 KB
testcase_01 AC 131 ms
54,104 KB
testcase_02 AC 130 ms
53,812 KB
testcase_03 AC 130 ms
54,124 KB
testcase_04 WA -
testcase_05 AC 128 ms
54,120 KB
testcase_06 AC 126 ms
54,140 KB
testcase_07 AC 128 ms
53,948 KB
testcase_08 AC 128 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Math;
import java.lang.StringBuilder;
import java.util.regex.Pattern;
import java.util.Arrays;


    public class Main {
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
  
            String s = sc.nextLine();
            StringBuilder sb = new StringBuilder(s);
            boolean flag = true;
            
            while(flag){
                int start = sb.indexOf("treeone");
                if(sb.toString().contains("treeone")){
                    sb.replace(start, start+7,"forest");
                }else{
                    flag = false;
                }
            }
            System.out.println(sb);
        }
    }
0