結果
問題 | No.725 木は明らかに森である |
ユーザー |
|
提出日時 | 2024-04-07 18:38:04 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 186 bytes |
コンパイル時間 | 10,159 ms |
コンパイル使用メモリ | 221,564 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 04:39:00 |
合計ジャッジ時間 | 10,720 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 |
ソースコード
// No.725 木は明らかに森である package main import ( "fmt" "strings" ) func main() { var s string fmt.Scan(&s) fmt.Println(strings.ReplaceAll(s, "treeone", "forest")) }