Skip to content

Commit

Permalink
typical90 020
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed May 3, 2021
1 parent 11dd95e commit 94beb5b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions typical90/src/bin/020.rs
@@ -1,11 +1,11 @@
use proconio::input;
use proconio::marker::Usize1;

fn main() {
input! {
n: usize,
a: [Usize1; n],
a: usize,
b: usize,
c: usize,
};
let ans = n - a.len();
println!("{}", ans);
let ans = a < c.pow(b as u32);
println!("{}", if ans { "Yes" } else { "No" });
}

0 comments on commit 94beb5b

Please sign in to comment.