結果

問題 No.725 木は明らかに森である
ユーザー MaboyMaboy
提出日時 2021-06-17 16:04:48
言語 Swift
(5.10.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 141,024 KB
実行使用メモリ 14,456 KB
最終ジャッジ日時 2023-08-30 23:27:02
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
14,456 KB
testcase_01 AC 5 ms
14,216 KB
testcase_02 AC 5 ms
13,656 KB
testcase_03 AC 6 ms
13,900 KB
testcase_04 AC 6 ms
14,076 KB
testcase_05 AC 5 ms
14,028 KB
testcase_06 AC 6 ms
14,048 KB
testcase_07 AC 6 ms
14,204 KB
testcase_08 AC 5 ms
13,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation
let S = readLine()!
let T = S.replacingOccurrences(of: "treeone", with: "forest")
print(T)
0