結果
問題 | No.5002 stick xor |
ユーザー | 最新の錆 |
提出日時 | 2018-05-25 22:45:42 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,160 bytes |
コンパイル時間 | 6,211 ms |
実行使用メモリ | 5,092 KB |
スコア | 0 |
最終ジャッジ日時 | 2018-05-25 22:45:50 |
ジャッジサーバーID (参考情報) |
judge6 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
use std::io::{Read, stdin}; fn main() { let mut buf = String::new(); stdin().read_to_string(&mut buf).unwrap(); let mut tok = buf.split_whitespace(); let mut get = || tok.next().unwrap(); macro_rules! get { ($t:ty) => (get().parse::<$t>().unwrap()); () => (get!(usize)); } let n = get!(); let k = get!(); let mut ls = vec![]; for _ in 0..k { ls.push(get!()); } let mut grid = vec![]; for _ in 0..n { let tmp: Vec<_> = get().as_bytes() .iter() .map(|&ch| (ch - b'0') as i32) .collect(); grid.push(tmp); } println!("{:?}", grid); for &l in ls.iter() { let mut max_sum = 0; let mut max_i = 0; for i in 0..n { let mut sum = 0; for j in 0..l { sum += grid[i][j]; } if sum > max_sum { max_sum = sum; max_i = i; } } for j in 0..l { grid[max_i][j] = 1 - grid[max_i][j]; } println!("{0} 1 {0} {1}", max_i + 1, l); } }