結果
問題 | No.351 市松スライドパズル |
ユーザー | cympfh |
提出日時 | 2016-04-01 22:13:18 |
言語 | Rust (1.77.0 + proconio) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,813 bytes |
コンパイル時間 | 14,231 ms |
コンパイル使用メモリ | 396,428 KB |
実行使用メモリ | 790,304 KB |
最終ジャッジ日時 | 2024-10-02 08:59:01 |
合計ジャッジ時間 | 16,700 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 143 ms
13,636 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
コンパイルメッセージ
warning: unused imports: `max`, `min` --> src/main.rs:3:17 | 3 | use std::cmp::{ min, max }; | ^^^ ^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `BinaryHeap` --> src/main.rs:4:25 | 4 | use std::collections::{ BinaryHeap, VecDeque }; | ^^^^^^^^^^ warning: unused variable: `i` --> src/main.rs:19:9 | 19 | for i in 0..n { | ^ help: if this is intentional, prefix it with an underscore: `_i` | = note: `#[warn(unused_variables)]` on by default
ソースコード
use std::io; use std::str::FromStr; use std::cmp::{ min, max }; use std::collections::{ BinaryHeap, VecDeque }; fn main() { let mut sc = Scanner::new(); let h = sc.cin(); let w = sc.cin(); let n = sc.cin(); let mut f: Vec<Vec<usize>> = vec![vec![0;w]; h]; for i in 0..h { for j in 0..w { f[i][j] = (i+j) % 2; } } for i in 0..n { let s: char = sc.get_char(); let k: usize = sc.cin(); if s == 'R' { let tmp = f[k][w-1]; for j in (1..w).rev() { f[k][j] = f[k][j-1]; } f[k][0] = tmp; } else { let tmp = f[h-1][k]; for j in (1..h).rev() { f[j][k] = f[j-1][k]; } f[0][k] = tmp; } } println!("{}", if f[0][0] == 1 { "black" } else { "white" } ); } #[allow(dead_code)] struct Scanner { stdin: io::Stdin, buffer: VecDeque<String>, } #[allow(dead_code)] impl Scanner { fn new() -> Scanner { Scanner { stdin: io::stdin(), buffer: VecDeque::new() } } fn reserve(&mut self) { while self.buffer.len() == 0 { let mut line = String::new(); let _ = self.stdin.read_line(&mut line); for w in line.split_whitespace() { self.buffer.push_back(String::from(w)); } } } fn cin<T: FromStr>(&mut self) -> T { self.reserve(); match self.buffer.pop_front().unwrap().parse::<T>() { Ok(a) => a, Err(_) => panic!("parse err") } } fn get_char(&mut self) -> char { self.reserve(); let head = self.buffer[0].chars().nth(0).unwrap(); let tail = String::from( &self.buffer[0][1..] ); if tail.len()>0 { self.buffer[0]=tail } else { self.buffer.pop_front(); } head } }