結果

問題 No.612 Move on grid
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-12 10:40:15
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 468 ms / 2,500 ms
コード長 842 bytes
コンパイル時間 1,329 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 260,224 KB
最終ジャッジ日時 2024-05-10 03:47:36
合計ジャッジ時間 8,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
78,848 KB
testcase_01 AC 99 ms
79,616 KB
testcase_02 AC 101 ms
80,896 KB
testcase_03 AC 164 ms
125,696 KB
testcase_04 AC 320 ms
259,968 KB
testcase_05 AC 421 ms
259,840 KB
testcase_06 AC 428 ms
259,584 KB
testcase_07 AC 310 ms
259,456 KB
testcase_08 AC 426 ms
260,096 KB
testcase_09 AC 368 ms
259,584 KB
testcase_10 AC 274 ms
201,728 KB
testcase_11 AC 179 ms
136,576 KB
testcase_12 AC 334 ms
224,768 KB
testcase_13 AC 216 ms
161,280 KB
testcase_14 AC 374 ms
248,960 KB
testcase_15 AC 178 ms
140,032 KB
testcase_16 AC 468 ms
260,224 KB
testcase_17 AC 207 ms
164,608 KB
testcase_18 AC 380 ms
251,904 KB
testcase_19 AC 278 ms
212,864 KB
testcase_20 AC 335 ms
259,712 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 = [0] * 50000
dp[0] = 1
for t in xrange(T):
    ndp = [0] * 50000
    for cur in xrange(50000):
        if dp[cur] == 0:
            continue
        ndp[cur + a + 60] += dp[cur]
        ndp[cur + a + 60] %= mod
        ndp[cur - a + 60] += dp[cur]
        ndp[cur - a + 60] %= mod
        ndp[cur + b + 60] += dp[cur]
        ndp[cur + b + 60] %= mod
        ndp[cur - b + 60] += dp[cur]
        ndp[cur - b + 60] %= mod
        ndp[cur + c + 60] += dp[cur]
        ndp[cur + c + 60] %= mod
        ndp[cur - c + 60] += dp[cur]
        ndp[cur - c + 60] %= mod
    dp = ndp

res = 0
for r in xrange(max(0, d+T*60), e+T*60+1):
    res += dp[r]
    res %= mod
print res
0