結果

問題 No.725 木は明らかに森である
ユーザー rabirabi
提出日時 2019-06-25 17:48:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 4,171 ms
コンパイル使用メモリ 71,152 KB
実行使用メモリ 49,480 KB
最終ジャッジ日時 2023-09-05 07:16:27
合計ジャッジ時間 5,290 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,356 KB
testcase_01 AC 44 ms
49,480 KB
testcase_02 AC 42 ms
49,244 KB
testcase_03 AC 43 ms
49,032 KB
testcase_04 AC 42 ms
49,320 KB
testcase_05 AC 42 ms
49,244 KB
testcase_06 AC 43 ms
49,232 KB
testcase_07 AC 42 ms
49,244 KB
testcase_08 AC 43 ms
49,140 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