結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,112 KB
testcase_01 AC 129 ms
54,072 KB
testcase_02 AC 129 ms
54,068 KB
testcase_03 AC 131 ms
54,256 KB
testcase_04 AC 134 ms
53,972 KB
testcase_05 AC 128 ms
53,820 KB
testcase_06 AC 129 ms
53,880 KB
testcase_07 AC 130 ms
53,856 KB
testcase_08 AC 129 ms
54,076 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();
            System.out.println(s.replace("treeone","forest"));
        }
    }
0