結果

問題 No.401 数字の渦巻き
ユーザー ⁣
提出日時 2024-05-23 15:42:10
言語 Rust
(1.77.0 + proconio)
結果
RE  
実行時間 -
コード長 566 bytes
コンパイル時間 13,656 ms
コンパイル使用メモリ 404,376 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-23 15:42:25
合計ジャッジ時間 14,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
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 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	let n: usize = s.trim().parse().unwrap();
	let (mut x, mut y, mut p, mut q) = (0i8, 0i8, 1i8, 0i8);
	let mut a = vec![0; n * n];
	for i in 1..=n * n {
		a[(x + y * n as i8) as usize] = i;
		if x + p >= n as i8
			|| y + q >= n as i8
			|| a[(x + p + (y + q) * n as i8) as usize] != 0
		{
			(p, q) = (-q, p);
		}
		x += p;
		y += q;
	}
	a.chunks(n).for_each(|r| {
		println!(
			"{}",
			r.iter()
				.map(|&x| format!("{:03}", x))
				.collect::<Vec<_>>()
				.join(" ")
		)
	});
}
0