結果
| 問題 |
No.725 木は明らかに森である
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2025-02-13 05:50:35 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| コンパイル時間 | 1,459 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 10,112 KB |
| 最終ジャッジ日時 | 2025-02-13 05:50:49 |
| 合計ジャッジ時間 | 1,944 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 1 |
ソースコード
S=input()
while S:
if "treeone" in S:
x=S.index("treeone")
S=S[:x]+"forest"+S[x+7:]
else:
break
print(S)
titia