結果

問題 No.725 木は明らかに森である
ユーザー rabirabi
提出日時 2019-06-25 17:48:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 50,372 KB
最終ジャッジ日時 2024-06-23 03:31:07
合計ジャッジ時間 4,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,296 KB
testcase_01 AC 47 ms
50,184 KB
testcase_02 AC 46 ms
50,204 KB
testcase_03 AC 49 ms
50,260 KB
testcase_04 AC 47 ms
50,292 KB
testcase_05 AC 47 ms
50,016 KB
testcase_06 AC 47 ms
50,208 KB
testcase_07 AC 49 ms
50,372 KB
testcase_08 AC 44 ms
36,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Tester {

	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			System.out.println(br.readLine().replace("treeone", "forest"));
	}
}
0