結果
問題 | No.725 木は明らかに森である |
ユーザー | fabled2468 |
提出日時 | 2018-09-24 15:43:22 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 126 ms / 2,000 ms |
コード長 | 585 bytes |
コンパイル時間 | 3,316 ms |
コンパイル使用メモリ | 74,576 KB |
実行使用メモリ | 54,308 KB |
最終ジャッジ日時 | 2024-09-22 04:21:33 |
合計ジャッジ時間 | 4,791 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
53,916 KB |
testcase_01 | AC | 110 ms
52,776 KB |
testcase_02 | AC | 122 ms
54,080 KB |
testcase_03 | AC | 126 ms
54,004 KB |
testcase_04 | AC | 123 ms
54,132 KB |
testcase_05 | AC | 110 ms
52,736 KB |
testcase_06 | AC | 123 ms
54,140 KB |
testcase_07 | AC | 125 ms
54,048 KB |
testcase_08 | AC | 124 ms
54,308 KB |
ソースコード
import java.util.Scanner; public class Main_725_treesForests { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String value1 = scan.next(); scan.close(); String result = replaceTreeoneToForest(value1); System.out.println(result); } public static String replaceTreeoneToForest(String value1) { String replacedString = value1; if (value1.contains("treeone")) { replacedString = value1.replaceAll("treeone", "forest"); } return replacedString; } }