結果

問題 No.725 木は明らかに森である
ユーザー N.MatsumotoN.Matsumoto
提出日時 2019-09-22 08:51:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 74,012 KB
実行使用メモリ 41,156 KB
最終ジャッジ日時 2024-09-19 03:25:20
合計ジャッジ時間 4,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,908 KB
testcase_01 AC 128 ms
41,156 KB
testcase_02 AC 130 ms
41,016 KB
testcase_03 AC 134 ms
41,156 KB
testcase_04 AC 131 ms
40,908 KB
testcase_05 AC 118 ms
40,328 KB
testcase_06 AC 129 ms
41,112 KB
testcase_07 AC 131 ms
40,784 KB
testcase_08 AC 131 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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