結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,788 KB
testcase_01 AC 38 ms
55,536 KB
testcase_02 AC 43 ms
55,240 KB
testcase_03 AC 143 ms
76,788 KB
testcase_04 AC 174 ms
78,704 KB
testcase_05 AC 1,913 ms
157,688 KB
testcase_06 AC 1,948 ms
156,868 KB
testcase_07 AC 121 ms
78,684 KB
testcase_08 AC 1,946 ms
156,616 KB
testcase_09 AC 831 ms
95,936 KB
testcase_10 AC 717 ms
92,168 KB
testcase_11 AC 218 ms
78,140 KB
testcase_12 AC 1,119 ms
113,648 KB
testcase_13 AC 393 ms
83,092 KB
testcase_14 AC 1,757 ms
132,348 KB
testcase_15 AC 259 ms
78,808 KB
testcase_16 AC 1,784 ms
141,232 KB
testcase_17 AC 254 ms
78,652 KB
testcase_18 AC 1,360 ms
124,932 KB
testcase_19 AC 443 ms
82,688 KB
testcase_20 AC 602 ms
85,184 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