結果
| 問題 |
No.1155 Nada Picnic
|
| ユーザー |
ixTL255
|
| 提出日時 | 2022-12-25 22:54:35 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 266 bytes |
| コンパイル時間 | 13,960 ms |
| コンパイル使用メモリ | 378,596 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-19 14:52:18 |
| 合計ジャッジ時間 | 14,911 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
コンパイルメッセージ
warning: unused `Result` that must be used --> src/main.rs:5:2 | 5 | io::stdin().read_line(&mut n); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: `#[warn(unused_must_use)]` on by default help: use `let _ = ...` to ignore the resulting value | 5 | let _ = io::stdin().read_line(&mut n); | +++++++
ソースコード
use std::io;
fn main() {
let mut n = String::new();
io::stdin().read_line(&mut n);
let n:u32 = n.trim().parse().unwrap();
if n == 1 {
println!("Shiitakerando");
} else if n == 2 {
println!("Otsukakokusaibijutsukan");
} else {
println!("Spring-8");
}
}
ixTL255