結果

問題 No.725 木は明らかに森である
ユーザー katsuyadaisukokatsuyadaisuko
提出日時 2018-09-04 01:45:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-10-10 11:15:28
合計ジャッジ時間 4,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,488 KB
testcase_01 AC 121 ms
41,448 KB
testcase_02 AC 109 ms
41,296 KB
testcase_03 AC 121 ms
41,116 KB
testcase_04 AC 124 ms
41,428 KB
testcase_05 AC 122 ms
41,212 KB
testcase_06 AC 125 ms
40,924 KB
testcase_07 AC 125 ms
41,104 KB
testcase_08 AC 127 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		String a = sc.nextLine();
		String b = a;
		if (a.contains("treeone")) {
			b = a.replace("treeone", "forest");
		}
		System.out.println(b);
	}
}
0