結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
atetubou
|
| 提出日時 | 2019-04-27 15:00:09 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 585 bytes |
| コンパイル時間 | 12,717 ms |
| コンパイル使用メモリ | 404,112 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-27 22:34:13 |
| 合計ジャッジ時間 | 12,689 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 3 |
コンパイルメッセージ
warning: function `read` is never used --> src/main.rs:1:4 | 1 | fn read<T: std::str::FromStr>() -> T | ^^^^ | = note: `#[warn(dead_code)]` on by default
ソースコード
fn read<T: std::str::FromStr>() -> T
where
<T as std::str::FromStr>::Err: std::fmt::Debug,
{
let mut b = String::new();
std::io::stdin().read_line(&mut b).unwrap();
b.trim().parse().unwrap()
}
fn main() {
let mut b = String::new();
std::io::stdin().read_line(&mut b).unwrap();
let iv: Vec<i32> = b
.split(' ')
.map(|x| x.trim().parse::<i32>().unwrap())
.collect();
let n = iv[0];
let k = iv[1];
match (n - k + 3) % 3 {
0 => println!("Draw"),
1 => println!("Lost"),
_ => println!("Won"),
}
}
atetubou