ABC 046, wip on c and d

This commit is contained in:
2022-06-02 13:30:39 +02:00
parent 75fb792115
commit fda6666069
6 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
use proconio::input;
use std::cmp::max;
fn main(){
input!{
n: u64,
ratios: [(u64, u64); n],
};
let mut a = 1;
let mut t = 1;
for (r_t, r_a) in ratios {
}
}