Skip to content

Commit

Permalink
past15-open b
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed Dec 6, 2023
1 parent e57e71b commit 532d7f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cargo-atcoder-1.70.0/contests/past15-open/src/bin/b.rs
@@ -1,10 +1,10 @@
use proconio::{input, marker::Usize1};
use proconio::input;

fn main() {
input! {
n: usize,
a: [Usize1; n],
_c: usize,
h: usize,
};
let ans = n - a.len();
println!("{}", ans);
let ans = h >= 2800;
println!("{}", if ans { "o" } else { "x" });
}

0 comments on commit 532d7f1

Please sign in to comment.