ABC 049, abc done, d is too slow and incorrect, need to learn more about union find

This commit is contained in:
2022-06-10 15:43:58 +02:00
parent 8ce2a3e769
commit 514d6781bc
6 changed files with 179 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
use proconio::input;
fn main(){
input!{
h: u32,
_w: u32,
c: [String; h],
};
for s in c {
println!("{}", s);
println!("{}", s);
}
}