結果

問題 No.725 木は明らかに森である
ユーザー fabled2468fabled2468
提出日時 2018-09-24 15:36:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-09-22 04:10:00
合計ジャッジ時間 5,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,972 KB
testcase_01 AC 122 ms
54,188 KB
testcase_02 WA -
testcase_03 AC 125 ms
54,016 KB
testcase_04 AC 121 ms
54,144 KB
testcase_05 AC 110 ms
52,964 KB
testcase_06 WA -
testcase_07 AC 108 ms
52,956 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main_725_treesForests {
    public static void main(String[] args) {

        Scanner scan = new Scanner(System.in);
        String value1 = scan.next();
        scan.close();

        String result = replaceTreeoneToForest(value1);
        System.out.println(result);
    }

    public static String replaceTreeoneToForest(String value1) {

        String replacedString = "";

        if (value1.contains("treeone")) {
            replacedString = value1.replaceAll("treeone", "forest");
        }

        return replacedString;
    }
}
0