結果

問題 No.612 Move on grid
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-12 10:32:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,352 ms / 2,500 ms
コード長 715 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 157,536 KB
最終ジャッジ日時 2024-12-14 04:51:48
合計ジャッジ時間 19,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 44 ms
53,376 KB
testcase_02 AC 48 ms
53,760 KB
testcase_03 AC 162 ms
76,976 KB
testcase_04 AC 191 ms
78,848 KB
testcase_05 AC 2,137 ms
157,536 KB
testcase_06 AC 2,338 ms
156,652 KB
testcase_07 AC 143 ms
78,464 KB
testcase_08 AC 2,352 ms
156,988 KB
testcase_09 AC 956 ms
95,592 KB
testcase_10 AC 772 ms
92,076 KB
testcase_11 AC 254 ms
78,164 KB
testcase_12 AC 1,321 ms
113,568 KB
testcase_13 AC 459 ms
82,744 KB
testcase_14 AC 1,724 ms
132,476 KB
testcase_15 AC 291 ms
78,472 KB
testcase_16 AC 2,136 ms
140,952 KB
testcase_17 AC 294 ms
78,208 KB
testcase_18 AC 1,611 ms
124,768 KB
testcase_19 AC 522 ms
82,480 KB
testcase_20 AC 699 ms
84,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# †
from collections import defaultdict

mod = 10**9 + 7

T = int(input())
a, b, c, d, e = map(int, input().split())
dp = defaultdict(int)
dp[0] = 1
for t in range(T):
    ndp = defaultdict(int)
    for cur in dp.keys():
        ndp[cur + a] += dp[cur]
        ndp[cur + a] %= mod
        ndp[cur - a] += dp[cur]
        ndp[cur - a] %= mod
        ndp[cur + b] += dp[cur]
        ndp[cur + b] %= mod
        ndp[cur - b] += dp[cur]
        ndp[cur - b] %= mod
        ndp[cur + c] += dp[cur]
        ndp[cur + c] %= mod
        ndp[cur - c] += dp[cur]
        ndp[cur - c] %= mod
    dp = ndp

res = 0
for r in range(d, e+1):
    res += dp[r]
    res %= mod
print(res)
0