結果
問題 | No.612 Move on grid |
ユーザー | kuwa |
提出日時 | 2017-12-12 03:22:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 519 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 18,204 KB |
最終ジャッジ日時 | 2024-05-08 00:46:42 |
合計ジャッジ時間 | 4,831 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,256 KB |
testcase_01 | AC | 27 ms
10,880 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 289 ms
11,136 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
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 | -- | - |
ソースコード
MOD = 1000000007 T = int(input()) A, B, C, D, E = map(int, input().split()) W = max(abs(A), abs(B), abs(C)) arr = [[0]*(2*W*T+2) for _ in range(2)] arr[0][0] = 1 for i in range(T): im = i&1 ni = 1-im for j in range(-W*(i+1), W*(i+1)+1): arr[ni][j] = arr[im][j-A] + arr[im][j+A] arr[ni][j] += arr[im][j-B] + arr[im][j+B] arr[ni][j] += arr[im][j-C] + arr[im][j+C] arr[ni][j] %= MOD idx = T%2 ans = 0 for j in range(D, E+1): ans = (ans + arr[idx][j]) % MOD print(ans)