2024-02-05 体調が悪い
体調が悪いので早めに寝る。
PAST #4 : 第四回 アルゴリズム実技検定 過去問
- A - 中央値
https://atcoder.jp/contests/past202010-open/tasks/past202010_a
- 提出: https://atcoder.jp/contests/past202010-open/submissions/50040086
- ソートして二番目を取ればいいのだけど元の位置がわからないといけない
- 元の位置を保持した上でソートすればいい
use proconio::input;
fn main() {
input! {
abc: [usize; 3],
};
let mut abc = abc.into_iter().enumerate().collect::<Vec<(usize, usize)>>();
abc.sort_by_key(|(_, v)| *v);
let ans = (abc[1].0 as u8 + b'A') as char;
println!("{}", ans);
}
今日のコミット。
- rust-atcoder 1 commit
- serde-firestore-value 2 commits