結果
問題 | No.725 木は明らかに森である |
ユーザー | マサ |
提出日時 | 2022-02-08 17:55:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 431 bytes |
コンパイル時間 | 1,988 ms |
コンパイル使用メモリ | 74,256 KB |
実行使用メモリ | 41,528 KB |
最終ジャッジ日時 | 2024-06-23 13:27:55 |
合計ジャッジ時間 | 3,803 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
41,528 KB |
testcase_01 | AC | 118 ms
41,164 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 128 ms
41,164 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.nextLine(); StringBuilder sb = new StringBuilder(str); try { sb = sb.replace(sb.indexOf("treeone"), sb.indexOf("treeone") + 7, "forest"); } catch(StringIndexOutOfBoundsException e) { System.out.println(str); } System.out.println(sb.toString()); sc.close(); } }