add ucpc2026-B and ucpc2026-F and complete 1379.rs

This commit is contained in:
2026-07-11 13:24:16 +09:00
parent 5d8efe99be
commit 873ea096e2
3 changed files with 99 additions and 0 deletions

14
storage/jungol/rs/1379.rs Normal file
View File

@@ -0,0 +1,14 @@
use std::io::{read_to_string, stdin};
fn main() {
let temp = read_to_string(stdin()).unwrap();
let mut iter = temp
.split_ascii_whitespace()
.map(|x| x.parse::<usize>().unwrap());
let n = iter.next().unwrap();
let m = iter.next().unwrap();
}