結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,256 KB
testcase_01 AC 130 ms
53,940 KB
testcase_02 RE -
testcase_03 AC 134 ms
53,984 KB
testcase_04 WA -
testcase_05 AC 128 ms
54,004 KB
testcase_06 RE -
testcase_07 AC 131 ms
54,080 KB
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

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");
                sb.replace(start, start+7,"forest");
                if(sb.toString().contains("treeone")){
                    flag = true;
                }else{
                    flag = false;
                }
            }
            System.out.println(sb);
        }
    }
0