結果

問題 No.612 Move on grid
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-12 10:40:00
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 842 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 15,700 KB
最終ジャッジ日時 2024-12-14 04:54:24
合計ジャッジ時間 53,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
14,240 KB
testcase_01 AC 24 ms
15,316 KB
testcase_02 AC 39 ms
14,216 KB
testcase_03 AC 847 ms
15,456 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 2,340 ms
14,348 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,440 ms
15,568 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,580 ms
15,700 KB
testcase_16 TLE -
testcase_17 AC 1,836 ms
14,348 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

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