Submission #1780981


Source Code Expand

#include <cstdio>
#include <vector>
using namespace std;

#define int long long

const int MOD = 1e9 + 7;

signed main() {
        int n, m, k;
        scanf("%lld%lld%lld", &n, &m, &k);
        long long c = (n + m - 1) / (k - 1);
        vector<vector<long long>> dp(c + 1, vector<long long> (m + 1, 0));
        dp[0][0] = 1;
        for (int i = 1; i <= c; i ++) {
                for (int j = 0; j <= m; j ++) {
                        for (int l = 0; l < k && j + l <= m; l ++) {
                                (dp[i][j + l] = dp[i][j + l] + dp[i - 1][j]) %= MOD;
                        }
                }
        }
        long long ans = 0;
        while (c > 0) {
                (ans += dp[c][m]) %= MOD;
                m -= k - 1;
                c --;
        }
        //while (m > 0) {
        //        int nc = (n + m - 1) / (k - 1);
        //        (ans += dp[nc][m]) %= MOD;
        //        m -= k - 1;
        //}
        printf("%lld\n", ans);
        return 0;
}

Submission Info

Submission Time
Task E - Eternal Average
User KokiYmgch
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1029 Byte
Status WA
Exec Time 68 ms
Memory 62848 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:11:42: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%lld%lld%lld", &n, &m, &k);
                                          ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 1600
Status
AC × 1
WA × 2
AC × 16
WA × 11
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt WA 1 ms 256 KB
02.txt WA 68 ms 62848 KB
03.txt AC 1 ms 256 KB
04.txt AC 1 ms 256 KB
05.txt WA 44 ms 31616 KB
06.txt AC 17 ms 10624 KB
07.txt WA 1 ms 256 KB
08.txt AC 2 ms 640 KB
09.txt AC 18 ms 2304 KB
10.txt AC 19 ms 1664 KB
11.txt AC 12 ms 256 KB
12.txt WA 9 ms 256 KB
13.txt AC 16 ms 896 KB
14.txt AC 8 ms 384 KB
15.txt AC 16 ms 768 KB
16.txt AC 1 ms 256 KB
17.txt AC 10 ms 384 KB
18.txt WA 11 ms 1536 KB
19.txt WA 3 ms 1920 KB
20.txt WA 18 ms 8064 KB
21.txt WA 1 ms 256 KB
22.txt AC 22 ms 8064 KB
23.txt AC 15 ms 1280 KB
24.txt AC 14 ms 1024 KB
s1.txt WA 1 ms 256 KB
s2.txt WA 1 ms 256 KB
s3.txt AC 1 ms 256 KB