結果

問題 No.725 木は明らかに森である
ユーザー GodNegotoGodNegoto
提出日時 2019-11-19 16:23:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 77,616 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-10-03 06:49:17
合計ジャッジ時間 5,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,400 KB
testcase_01 AC 129 ms
41,076 KB
testcase_02 AC 128 ms
41,040 KB
testcase_03 AC 130 ms
41,160 KB
testcase_04 AC 130 ms
41,144 KB
testcase_05 AC 129 ms
41,420 KB
testcase_06 AC 130 ms
41,144 KB
testcase_07 AC 132 ms
41,424 KB
testcase_08 AC 129 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		System.out.println(s.replace("treeone", "forest"));
	}
}
0