ABC 045, not finished yet, got idea for c

This commit is contained in:
2022-05-29 23:41:44 +02:00
parent 5e31032955
commit 841394f84c
6 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
use proconio::input;
fn main() {
input!{
s: String,
};
let ns : Vec<u64> = s.chars().map(|c| u64::from(c.to_digit(10).unwrap())).collect();
let nns = vec![ns];
let mut result : u64 = 0;
println!("{}", {result});
}