結果

問題 No.725 木は明らかに森である
ユーザー CecilCecil
提出日時 2023-01-27 19:41:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 2,625 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 41,276 KB
最終ジャッジ日時 2024-06-28 04:59:52
合計ジャッジ時間 4,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,056 KB
testcase_01 AC 126 ms
40,948 KB
testcase_02 AC 125 ms
41,192 KB
testcase_03 AC 125 ms
41,036 KB
testcase_04 AC 128 ms
41,124 KB
testcase_05 AC 115 ms
40,008 KB
testcase_06 AC 129 ms
41,004 KB
testcase_07 AC 132 ms
41,276 KB
testcase_08 AC 124 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static String word = "treeone";

	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);

		String n = scan.hasNextLine() ? scan.nextLine() : null;
		
		// 小文字のみ
		String regex_Alphabet = "^[a-z]+$";

		if (n.length() > 100 || n.length() < 1 || !n.matches(regex_Alphabet)) {
			System.out.println("入力エラー1");
			return;
		}
		
		String ans  = n.replace(word,"forest");

		// 結果出力
		System.out.println(ans);

	}
}
0