結果

問題 No.2871 Universal Serial Bus
ユーザー Yukino DX.Yukino DX.
提出日時 2024-10-23 11:55:20
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 12,994 ms
コンパイル使用メモリ 406,004 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-23 11:55:36
合計ジャッジ時間 14,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,816 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 WA -
testcase_16 AC 1 ms
6,820 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::{input, marker::Chars};

fn main() {
    input! {
        h:usize,
        w:usize,
        s:[Chars;h],
        t:[Chars;h],
    }

    let mut s_rev = vec![vec!['.'; w]; h];
    for i in 0..h {
        for j in 0..w {
            s_rev[i][j] = s[h - i - 1][j];
        }
    }

    let ans = if (0..h).all(|i| (0..w).all(|j| s[i][j] != t[i][j])) {
        3.531740190461733
    } else if (0..h).all(|i| (0..w).all(|j| s_rev[i][j] != t[i][j])) {
        3.128936827211877
    } else {
        -1.0
    };

    println!("{}", ans);
}
0