結果

問題 No.725 木は明らかに森である
ユーザー N.MatsumotoN.Matsumoto
提出日時 2019-09-22 08:51:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 2,946 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2023-10-19 07:05:43
合計ジャッジ時間 5,039 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
57,128 KB
testcase_01 AC 133 ms
57,600 KB
testcase_02 AC 136 ms
57,152 KB
testcase_03 AC 139 ms
57,320 KB
testcase_04 AC 137 ms
57,412 KB
testcase_05 AC 137 ms
57,444 KB
testcase_06 AC 136 ms
57,420 KB
testcase_07 AC 139 ms
57,104 KB
testcase_08 AC 139 ms
57,140 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