結果
問題 | No.725 木は明らかに森である |
ユーザー | N.Matsumoto |
提出日時 | 2019-09-21 21:50:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 686 bytes |
コンパイル時間 | 2,170 ms |
コンパイル使用メモリ | 75,348 KB |
実行使用メモリ | 56,156 KB |
最終ジャッジ日時 | 2024-09-19 03:09:36 |
合計ジャッジ時間 | 4,001 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 135 ms
41,368 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 132 ms
41,168 KB |
testcase_07 | WA | - |
testcase_08 | AC | 135 ms
41,336 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] array = sc.next().split(""); List<String> res = new ArrayList<>(); List<String> target = new ArrayList<>(); for (String str : array) { target.add(str); if (target.size() == 7) { if (String.join("", target).equals("treeone")) { str = "forest"; } } res.add(str); target.clear(); } System.out.println(String.join("", res)); } }