結果

問題 No.612 Move on grid
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2017-12-14 15:05:39
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 428 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-05-08 10:02:51
合計ジャッジ時間 5,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
17,536 KB
testcase_01 AC 99 ms
12,288 KB
testcase_02 AC 101 ms
12,288 KB
testcase_03 AC 456 ms
12,800 KB
testcase_04 AC 628 ms
12,544 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
T = gets.to_i
a, b, c, d, e = gets.split.map(&:to_i)
MOVE = [a, -a, b, -b, c, -c]

(1 .. T).inject({0 => 1}) do |prev, _|
    prev.each_with_object(Hash.new(0)) do |(k,v), dp|
        MOVE.each do |m|
            dp[k + m] += v
            dp[k + m] %= M if dp[k + m] > M
        end
    end
end.tap do |dp|
    
    answer = (d .. e).inject(0) do |sum, k|
        (sum + dp[k]) % M
    end
    puts answer
end
0