結果

問題 No.612 Move on grid
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-22 00:53:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 2,500 ms
コード長 661 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 86,424 KB
最終ジャッジ日時 2024-09-21 13:36:02
合計ジャッジ時間 11,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,032 KB
testcase_01 AC 52 ms
63,744 KB
testcase_02 AC 56 ms
66,048 KB
testcase_03 AC 217 ms
81,844 KB
testcase_04 AC 655 ms
86,400 KB
testcase_05 AC 836 ms
86,400 KB
testcase_06 AC 813 ms
86,424 KB
testcase_07 AC 651 ms
86,016 KB
testcase_08 AC 815 ms
86,328 KB
testcase_09 AC 709 ms
86,164 KB
testcase_10 AC 500 ms
84,864 KB
testcase_11 AC 250 ms
82,704 KB
testcase_12 AC 601 ms
84,864 KB
testcase_13 AC 343 ms
83,500 KB
testcase_14 AC 702 ms
85,664 KB
testcase_15 AC 265 ms
82,304 KB
testcase_16 AC 798 ms
86,304 KB
testcase_17 AC 338 ms
83,768 KB
testcase_18 AC 707 ms
85,520 KB
testcase_19 AC 502 ms
84,436 KB
testcase_20 AC 665 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
T = int(input())
a, b, c, d, e = map(int, input().split())
abc = (abs(a), abs(b), abs(c))

U = 10000
MAX = 2 * U + 1
dp = [0] * MAX
dp[U] = 1

while T:
    T -= 1
    newDP = [0] * MAX
    for i in range(MAX):
        for x in abc:
            if i + x < MAX:
                newDP[i + x] += dp[i]
                if newDP[i + x] >= mod:
                    newDP[i + x] -= mod
            if i - x >= 0:
                newDP[i - x] += dp[i]
                if newDP[i - x] >= mod:
                    newDP[i - x] -= mod
    dp = newDP

ans = 0
for i in range(d, e + 1):
    ans += dp[i + U]
    if ans >= mod:
        ans -= mod

print(ans)
0