bouzuya.hatenablog.com

ぼうずやのにっき

dependabot 対応 / PAST #4 B

いくつかのリポジトリの依存関係のバージョンアップ (dependabot 対応) 。 bouzuya/firestore-structured-query の doc を更新している。 Order につけそびれていた Clone をつけたりしている。


PAST #4 第四回 アルゴリズム実技検定 過去問

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);
}

今日のコミット。