結果

問題 No.2680 研究室配属
ユーザー ⁣
提出日時 2024-07-30 23:25:49
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 12,201 ms
コンパイル使用メモリ 402,380 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-07-30 23:26:06
合計ジャッジ時間 15,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 0 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 20 ms
7,680 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 25 ms
9,088 KB
testcase_20 AC 21 ms
9,088 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 38 ms
9,984 KB
testcase_24 AC 36 ms
10,112 KB
testcase_25 AC 37 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn g() -> Vec<usize> {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	s.split_whitespace().flat_map(str::parse).collect()
}
fn main() {
	let n = g();
	let mut a = g();
	let mut d = vec!["".to_owned(); n[0]];
	let t: Vec<_> = (0..n[0]).map(|_| g()).collect();
	for j in 0..n[1] {
		for i in 0..n[0] {
			let r = t[i][j];
			if a[r] > 0 && d[i].is_empty() {
				d[i] = r.to_string();
				a[r] -= 1;
			}
		}
	}
	println!("{}", d.join(" "))
}
0