結果

問題 No.725 木は明らかに森である
ユーザー GrenacheGrenache
提出日時 2018-09-16 17:04:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 75,764 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-07-18 07:24:38
合計ジャッジ時間 4,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,980 KB
testcase_01 AC 112 ms
53,996 KB
testcase_02 AC 103 ms
52,940 KB
testcase_03 AC 115 ms
54,048 KB
testcase_04 AC 121 ms
54,508 KB
testcase_05 AC 109 ms
52,804 KB
testcase_06 AC 106 ms
52,956 KB
testcase_07 AC 111 ms
53,968 KB
testcase_08 AC 111 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder725 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		String s = sc.next();

		int n = s.length();
		
		int i = 0;
		int next;
		while ((next = s.indexOf("treeone", i)) >= 0) {
			for (int j = i; j < next; j++) {
				pr.print(s.charAt(j));
			}
			pr.print("forest");
			
			i = next + 7;
		}
		for (int j = i; j < n; j++) {
			pr.print(s.charAt(j));
		}

		pr.println();
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0