結果

問題 No.612 Move on grid
ユーザー 👑 rin204rin204
提出日時 2022-02-14 08:57:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,239 ms / 2,500 ms
コード長 443 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 179,328 KB
最終ジャッジ日時 2024-06-29 05:55:22
合計ジャッジ時間 17,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,200 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 124 ms
75,904 KB
testcase_04 AC 160 ms
76,004 KB
testcase_05 AC 2,207 ms
179,328 KB
testcase_06 AC 2,232 ms
179,328 KB
testcase_07 AC 104 ms
75,660 KB
testcase_08 AC 2,239 ms
178,944 KB
testcase_09 AC 813 ms
98,496 KB
testcase_10 AC 614 ms
94,596 KB
testcase_11 AC 194 ms
78,264 KB
testcase_12 AC 1,152 ms
122,496 KB
testcase_13 AC 386 ms
84,084 KB
testcase_14 AC 1,544 ms
145,024 KB
testcase_15 AC 246 ms
78,784 KB
testcase_16 AC 1,776 ms
159,744 KB
testcase_17 AC 239 ms
77,824 KB
testcase_18 AC 1,532 ms
137,232 KB
testcase_19 AC 416 ms
81,888 KB
testcase_20 AC 573 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

T = int(input())
a, b, c, d, e = map(int, input().split())
dp = {0:1}
for _ in range(T):
    dp2 = {}
    for k, v in dp.items():
        for x in [a, b, c]:
            dp2[k + x] = dp2.get(k + x, 0) + v
            dp2[k - x] = dp2.get(k - x, 0) + v
            dp2[k + x] %= MOD
            dp2[k - x] %= MOD
    dp = dp2

ans = 0
for k, v in dp.items():
    if d <= k <= e:
        ans += v
        ans %= MOD
print(ans)
0