結果

問題 No.612 Move on grid
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2017-12-14 14:50:23
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 501 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 97,312 KB
最終ジャッジ日時 2024-05-08 09:56:22
合計ジャッジ時間 6,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
97,312 KB
testcase_01 AC 167 ms
90,240 KB
testcase_02 AC 168 ms
90,368 KB
testcase_03 AC 564 ms
90,368 KB
testcase_04 AC 1,342 ms
90,368 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M = 1000_000_007
GND = 10_000
dp = Array.new(501){ Array.new(GND * 2 + 1, 0) }

T = gets.to_i
a,b,c,d,e = gets.split.map(&:to_i)

MOVE = [a, -a, b, -b, c, -c]
dp[0][GND] = 1

(1 .. T).each do |t|
    (0 .. 20000).each do |s|
        if dp[t-1][s] > 0
            MOVE.each do |m|
                dp[t][s + m] += dp[t - 1][s]
                dp[t][s + m] %= M if dp[t][s + m] > M
            end
        end
    end
end
ans = (d .. e).inject(0) do |sum, k|
    (sum + dp[T][GND + k]) % M
end
puts ans 
0