結果
| 問題 | No.725 木は明らかに森である |
| コンテスト | |
| ユーザー |
かりあげクン
|
| 提出日時 | 2020-08-05 22:37:38 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 3,890 ms |
| コンパイル使用メモリ | 187,872 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-06 08:52:34 |
| 合計ジャッジ時間 | 4,582 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
use std::io::Read;
fn main() {
let mut s = String::new();
std::io::stdin().read_to_string(&mut s).ok();
let s: &str = s.trim().split('\n').next().unwrap().trim();
println!("{}", s.replace("treeone", "forest"));
}
かりあげクン