結果

問題 No.725 木は明らかに森である
ユーザー tentententen
提出日時 2020-12-09 18:25:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-09-19 01:21:52
合計ジャッジ時間 3,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,080 KB
testcase_01 AC 129 ms
41,180 KB
testcase_02 AC 129 ms
40,948 KB
testcase_03 AC 131 ms
41,380 KB
testcase_04 AC 126 ms
40,960 KB
testcase_05 AC 131 ms
41,416 KB
testcase_06 AC 126 ms
41,104 KB
testcase_07 AC 129 ms
41,008 KB
testcase_08 AC 128 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println(sc.next().replaceAll("treeone", "forest"));
    }
}
0