bouzuya.hatenablog.com

ぼうずやのにっき

bouzuya/serde-firestore-value の chrono, time feature を追加

bouzuya/serde-firestore-value

  • #[serde(tag = "...")] が動作するよう修正
  • #[serde(with = "option_string_as_timestamp")] の追加
  • #[serde(with = "chrono_date_time_as_timestamp")] の追加 (chrono feature)
  • #[serde(with = "time_offset_date_time_as_timestamp")] の追加 (time feature)

あとちょっとかな……。


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

use proconio::input;

fn main() {
    input! {
        n: usize,
        x: usize,
        y: usize,
    };
    let ans = n / x * y;
    println!("{}", ans);
}

今日のコミット。