結果
問題 | No.870 無敵囲い |
ユーザー | pod1 |
提出日時 | 2019-09-08 01:08:34 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,033 bytes |
コンパイル時間 | 10,863 ms |
コンパイル使用メモリ | 395,540 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-29 06:23:52 |
合計ジャッジ時間 | 11,763 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
コンパイルメッセージ
warning: unused import: `std::cmp::min` --> src/main.rs:2:5 | 2 | use std::cmp::min; | ^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `std::cmp::max` --> src/main.rs:3:5 | 3 | use std::cmp::max; | ^^^^^^^^^^^^^
ソースコード
use std::vec::Vec; use std::cmp::min; use std::cmp::max; fn read<T: std::str::FromStr>() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().parse().ok().unwrap() } fn read_vec<T: std::str::FromStr>() -> Vec<T> { read::<String>().split_whitespace().map(|e| e.parse().ok().unwrap()).collect() } fn main() { let n: usize = read(); let mut process: Vec<((usize, usize), (usize, usize))> = Vec::new(); let mut board: Vec<Vec<usize>> = vec![vec![0; 9]; 9]; board[1][7] = 1; board[2][8] = 2; board[6][8] = 3; for _ in 0..n { let v: Vec<usize> = read_vec(); process.push(((v[0] - 1, v[1] - 1), (v[2] - 1, v[3] - 1))); } for (now, next) in process { moving(&mut board, now, next); } if board[4][7] == 1 && board[4][7] == 2 && board[5][7] == 3{ println!("Yes"); } else { println!("No"); } } fn moving(b: &mut Vec<Vec<usize>>, now: (usize, usize), next: (usize, usize)) { b[next.0][next.1] = b[now.0][now.1]; b[now.0][now.1] = 0 }