2024-02-06 dependabot 対応 / PAST #4 B
いくつかのリポジトリの依存関係のバージョンアップ (dependabot 対応) 。 bouzuya/firestore-structured-query の doc を更新している。 Order
につけそびれていた Clone
をつけたりしている。
PAST #4 第四回 アルゴリズム実技検定 過去問
- B - 電卓
https://atcoder.jp/contests/past202010-open/tasks/past202010_b
- 提出: https://atcoder.jp/contests/past202010-open/submissions/50064516
- 問題ないかもしれないけど整数で処理する
- 2 桁出力を見落として 1WA
use proconio::input;
fn main() {
input! {
x: i64,
y: i64,
};
if y == 0 {
println!("ERROR");
return;
}
let n = x * 100 / y;
println!("{}.{:02}", n / 100, n % 100);
}
今日のコミット。
- rust-atcoder 1 commit
- firestore-structured-query 6 commits
- firestore-path 2 commits
- genuuid 2 commits
- genpi 2 commits