結果

問題 No.725 木は明らかに森である
ユーザー 37zigen37zigen
提出日時 2018-08-24 21:26:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 4,732 ms
コンパイル使用メモリ 80,716 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-06-23 06:39:33
合計ジャッジ時間 4,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,824 KB
testcase_01 AC 113 ms
40,148 KB
testcase_02 AC 126 ms
40,600 KB
testcase_03 AC 127 ms
41,320 KB
testcase_04 AC 126 ms
41,016 KB
testcase_05 AC 125 ms
41,224 KB
testcase_06 AC 110 ms
40,252 KB
testcase_07 AC 128 ms
40,776 KB
testcase_08 AC 126 ms
40,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		String S = sc.next().replaceAll("treeone", "forest");
		System.out.println(S);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0