結果

問題 No.612 Move on grid
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-12 10:28:39
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,011 ms / 2,500 ms
コード長 724 bytes
コンパイル時間 2,649 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 169,992 KB
最終ジャッジ日時 2024-12-14 04:50:54
合計ジャッジ時間 18,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
77,696 KB
testcase_01 AC 83 ms
77,232 KB
testcase_02 AC 82 ms
77,472 KB
testcase_03 AC 227 ms
79,660 KB
testcase_04 AC 231 ms
82,080 KB
testcase_05 AC 1,930 ms
169,992 KB
testcase_06 AC 2,011 ms
169,892 KB
testcase_07 AC 164 ms
81,788 KB
testcase_08 AC 1,995 ms
169,356 KB
testcase_09 AC 910 ms
100,572 KB
testcase_10 AC 734 ms
97,488 KB
testcase_11 AC 266 ms
81,080 KB
testcase_12 AC 1,194 ms
122,336 KB
testcase_13 AC 449 ms
87,204 KB
testcase_14 AC 1,606 ms
144,956 KB
testcase_15 AC 299 ms
82,412 KB
testcase_16 AC 1,952 ms
154,236 KB
testcase_17 AC 306 ms
82,112 KB
testcase_18 AC 1,501 ms
136,560 KB
testcase_19 AC 512 ms
86,460 KB
testcase_20 AC 674 ms
89,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 10**9 + 7

T = int(raw_input())
a, b, c, d, e = map(int, raw_input().split())
dp = defaultdict(int)
dp[0] = 1
for t in xrange(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 xrange(d, e+1):
    res += dp[r]
    res %= mod
print res
0