結果
問題 | No.2018 X-Y-X |
ユーザー | akakimidori |
提出日時 | 2022-07-22 22:14:51 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,990 bytes |
コンパイル時間 | 11,937 ms |
コンパイル使用メモリ | 379,032 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 06:41:10 |
合計ジャッジ時間 | 13,475 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
コンパイルメッセージ
warning: unreachable statement --> src/main.rs:16:5 | 15 | todo!(); | ------- any code following this expression is unreachable 16 | / let mut a = s 17 | | .windows(2) 18 | | .map(|s| (s[0] == s[1]) as u8) 19 | | .collect::<Vec<_>>(); | |_____________________________^ unreachable statement | = note: `#[warn(unreachable_code)]` on by default warning: unused variable: `a` --> src/main.rs:16:13 | 16 | let mut a = s | ^ help: if this is intentional, prefix it with an underscore: `_a` | = note: `#[warn(unused_variables)]` on by default warning: unused variable: `b` --> src/main.rs:20:9 | 20 | let b = t | ^ help: if this is intentional, prefix it with an underscore: `_b`
ソースコード
fn run() { input! { n: usize, s: bytes, t: bytes, } if s == t { println!("0"); return; } if s[0] != t[0] || s[n - 1] != t[n - 1] || s.windows(3).all(|s| s[0] != s[2]) { println!("-1"); return; } todo!(); let mut a = s .windows(2) .map(|s| (s[0] == s[1]) as u8) .collect::<Vec<_>>(); let b = t .windows(2) .map(|s| (s[0] == s[1]) as u8) .collect::<Vec<_>>(); } fn main() { run(); } // ---------- begin input macro ---------- // reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 #[macro_export] macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; ($($r:tt)*) => { let s = { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } #[macro_export] macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } #[macro_export] macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, bytes) => { read_value!($iter, String).bytes().collect::<Vec<u8>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } // ---------- end input macro ----------