結果
問題 | No.612 Move on grid |
ユーザー | mai |
提出日時 | 2017-12-12 02:24:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,484 KB |
最終ジャッジ日時 | 2024-05-08 00:08:27 |
合計ジャッジ時間 | 6,069 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,512 KB |
testcase_01 | AC | 28 ms
11,136 KB |
testcase_02 | AC | 29 ms
11,136 KB |
testcase_03 | AC | 271 ms
11,216 KB |
testcase_04 | AC | 1,503 ms
11,264 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 | -- | - |
ソースコード
t = int(input()) a,b,c,d,e = map(int, input().split()) # print(t,a,b,c,d,e) d += 10010 e += 10010 MD = 1000000007 dp = [0]*20020 dp[10010] = 1 left = 10010 right = 10011 abc = max(abs(a),abs(b),abs(c)) for lop in range(t): dp2 = [0]*20020 for x in range(left, right): y = dp[x] = dp[x]%MD if y > 0: dp2[x + a] += y dp2[x - a] += y dp2[x + b] += y dp2[x - b] += y dp2[x + c] += y dp2[x - c] += y dp = dp2 left -= abc right += abc ans = 0 for x in range(d, e+1): ans = (ans+dp[x])%MD print(ans%MD)