結果

問題 No.269 見栄っ張りの募金活動
ユーザー とくまるproとくまるpro
提出日時 2022-12-03 17:04:06
言語 Rust
(1.77.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 2,424 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 167,808 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-04-19 02:52:55
合計ジャッジ時間 2,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 8 ms
7,680 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 24 ms
18,048 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 8 ms
7,296 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unnecessary parentheses around `for` iterator expression
  --> main.rs:81:14
   |
81 |     for i in (1..=N) {
   |              ^     ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
81 -     for i in (1..=N) {
81 +     for i in 1..=N {
   |

warning: unnecessary parentheses around `for` iterator expression
  --> main.rs:82:18
   |
82 |         for j in (0..=(S as usize)) {
   |                  ^                ^
   |
help: remove these parentheses
   |
82 -         for j in (0..=(S as usize)) {
82 +         for j in 0..=(S as usize) {
   |

warning: constant `DXY` is never used
  --> main.rs:62:7
   |
62 | const DXY: [(isize, isize); 4] = [(0, 1), (0, -1), (1, 0), (-1, 0)];
   |       ^^^
   |
   = note: `#[warn(dead_code)]` on by default

warning: constant `FIRST_VALUE` is never used
  --> main.rs:63:7
   |
63 | const FIRST_VALUE: usize = 1_000_000_000;
   |       ^^^^^^^^^^^

warning: 4 warnings emitted

ソースコード

diff #

#[allow(non_snake_case)]
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        let mut next = || { iter.next().unwrap() };
        input_inner!{next, $($r)*}
    };
    ($($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, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };

    ($next:expr, usize1) => {
        read_value!($next, usize) - 1
    };

    ($next:expr, $t:ty) => {
        $next().parse::<$t>().expect("Parse error")
    };
}
// input!マクロ 複数個所には記述しない
#[allow(unused_imports)]
use std::{
    cmp::Reverse,
    cmp::{max, min},
    collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, VecDeque},
    process::exit,
};
const DXY: [(isize, isize); 4] = [(0, 1), (0, -1), (1, 0), (-1, 0)];
const FIRST_VALUE: usize = 1_000_000_000;
const MOD: usize = 1_000_000_007;
#[allow(non_snake_case)]
fn main() {
    input! {
        N: usize,
        S: isize,
        K: usize,
    }
    let S = S - (K * N * (N - 1) / 2) as isize;
    if S < 0 {
        println!("0");
        exit(0);
    }

    let mut dp = vec![vec![0; S as usize + 1]; N + 1];
    // dp[i][j] := jをi分割するときの総数
    dp[0][0] = 1;
    for i in (1..=N) {
        for j in (0..=(S as usize)) {
            if j >= i {
                dp[i][j] = dp[i - 1][j] + dp[i][j - i];
                dp[i][j] %= MOD;
            } else {
                dp[i][j] = dp[i - 1][j];
            }
        }
    }
    println!("{}", dp[N][S as usize]);
}
0