結果

問題 No.1220 yukipoker
ユーザー koba-e964koba-e964
提出日時 2021-11-17 15:19:23
言語 Rust
(1.77.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 1,888 bytes
コンパイル時間 1,316 ms
コンパイル使用メモリ 156,392 KB
実行使用メモリ 6,388 KB
最終ジャッジ日時 2023-08-25 02:58:30
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
4,376 KB
testcase_01 AC 4 ms
4,380 KB
testcase_02 AC 4 ms
4,380 KB
testcase_03 AC 4 ms
4,380 KB
testcase_04 AC 4 ms
4,376 KB
testcase_05 AC 4 ms
4,376 KB
testcase_06 AC 5 ms
4,376 KB
testcase_07 AC 4 ms
4,376 KB
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 4 ms
4,376 KB
testcase_10 AC 4 ms
4,380 KB
testcase_11 AC 23 ms
5,020 KB
testcase_12 AC 25 ms
5,040 KB
testcase_13 AC 46 ms
6,364 KB
testcase_14 AC 44 ms
6,084 KB
testcase_15 AC 31 ms
5,284 KB
testcase_16 AC 35 ms
5,572 KB
testcase_17 AC 21 ms
4,800 KB
testcase_18 AC 26 ms
5,296 KB
testcase_19 AC 48 ms
6,388 KB
testcase_20 AC 47 ms
6,356 KB
testcase_21 AC 4 ms
4,376 KB
testcase_22 AC 4 ms
4,380 KB
testcase_23 AC 4 ms
4,380 KB
testcase_24 AC 4 ms
4,380 KB
testcase_25 AC 4 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{Write, BufWriter};
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) };
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

// https://yukicoder.me/problems/no/1220 (3)
// F = M * C(N, K) / (全体), S = M^K (N - K + 1) / (全体) なので、F/S が計算できる。
// 対数で計算すると安全。
fn main() {
    let out = std::io::stdout();
    let mut out = BufWriter::new(out.lock());
    macro_rules! puts {($($format:tt)*) => (let _ = write!(out,$($format)*););}
    input! {
        q: usize,
        nmk: [(usize, usize, usize); q],
    }
    const W: usize = 100_100;
    let mut ln = vec![0.0; W];
    let mut acc = vec![0.0; W];
    for i in 1..W {
        ln[i] = (i as f64).ln();
        acc[i] = acc[i - 1] + ln[i];
    }
    for (n, m, k) in nmk {
        let diff =
            ln[m] + acc[n] - acc[k] - acc[n - k]
            - (k as f64 * ln[m] + ln[n - k + 1]);
        puts!("{}\n", if diff < 0.0 { "Flush" } else { "Straight" });
    }
}
0