結果

問題 No.269 見栄っ張りの募金活動
ユーザー Kenta NakajimaKenta Nakajima
提出日時 2020-04-29 12:01:46
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,238 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-05-05 22:55:52
合計ジャッジ時間 1,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 7 ms
8,960 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 6 ms
8,064 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 8 ms
9,600 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h> // uint64_t

#define max(a,b) ((a) > (b) ? (a) : (b))
#define min(a,b) ((a) > (b) ? (b) : (a))
#define BUF_SIZE 30


int get_int3(int *a1, int *a2, int *a3) {
#ifdef BUF_SIZE
  char line[BUF_SIZE];
  if(!fgets(line, BUF_SIZE, stdin)) return -1;
  sscanf(line, "%d %d %d", a1, a2, a3);
#else
#error
#endif
  return 0;
}

#define SUM_MAX 200000
#define NUM_MAX 100
#define DIVISOR 1000000007

int main(void) {
    int num, sum, k;
    static uint64_t dp[SUM_MAX+1][NUM_MAX];

    get_int3(&num, &sum, &k);

    // calc num-1 split in sum-**
    dp[0][0] = 1;
    int s, n;
    for(s = 0; s <= sum; s++) {
        for(n = 1; n < num; n++) {
            dp[s][n] = dp[s][n-1];
            if(s>=n) dp[s][n] = (dp[s][n] + dp[s-n][n]) % DIVISOR;
        }
    }

    uint64_t ans = 0;
    int base;
    for(base = 0; base <= num; base++) {
        int base_sum = num * base + k * num * (num-1)/2;
        if(base_sum > sum) break;
        int rem = sum - base_sum;
#ifdef DEBUG
        printf("[%d] dp[%d][%d] = %d\n", base_sum, rem ,num-1, dp[rem][num-1]);
#endif
        ans = (ans + dp[rem][num-1]) % DIVISOR;
    }
    printf("%d\n", (int)ans);

    return 0;
}
0