結果

問題 No.1133 キムワイプイーター
ユーザー ⁣
提出日時 2024-06-06 15:29:33
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 14,944 ms
コンパイル使用メモリ 398,764 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 15:29:50
合計ジャッジ時間 14,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 13 ms
6,944 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 0 ms
6,940 KB
testcase_24 AC 0 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 0 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let l: Vec<_> = s.split_whitespace().collect();
	let n = l[0].parse::<usize>().unwrap() + 1;
	let mut a = vec!["1"; n * n];
	let (mut x, mut y) = (0, n - 1);
	a[n * n - n] = "0";
	for d in l[2].chars() {
		match d {
			'D' => y = (y + 1) % n,
			'U' => y = (y + n - 1) % n,
			'L' => x = (x + 1) % n,
			'R' => x = (x + n - 1) % n,
			_ => (),
		}
		a[x + y * n] = "0";
	}
	a.chunks(n).for_each(|r| println!("{}", r.join(" ")));
}
0