結果

問題 No.1169 Row and Column and Diagonal
ユーザー phsplsphspls
提出日時 2020-08-22 23:01:16
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 14,164 ms
コンパイル使用メモリ 377,572 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 12:25:18
合計ジャッジ時間 15,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 8 ms
5,248 KB
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 19 ms
5,248 KB
testcase_11 AC 21 ms
5,248 KB
testcase_12 AC 22 ms
5,248 KB
testcase_13 AC 22 ms
5,248 KB
testcase_14 AC 21 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();

    let mut not_used: Vec<Vec<bool>> = vec![vec![true; n]; n];
    for i in 1..n {
        let a: Vec<_> = (1..=n).map(|j| {
                let ret = if j == i {
                        i
                    } else if (n+j-i) % n == i {
                        n
                    } else {
                        (n+j-i) % n
                    }
                ;
                not_used[j-1][ret-1] = false;
                return ret;
            })
            .map(|j| j.to_string())
            .collect();
        println!("{}", a.join(" "));
    }
    println!(
        "{}",
        not_used.iter().map(|row|
            row.iter().enumerate().find(|pair| *pair.1).unwrap().0 + 1usize
        )
        .map(|i| i.to_string())
        .collect::<Vec<String>>()
        .join(" ")
    );
}
0