結果
問題 | No.612 Move on grid |
ユーザー | りあん |
提出日時 | 2017-12-01 18:46:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 273 ms / 2,500 ms |
コード長 | 624 bytes |
コンパイル時間 | 931 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 142,464 KB |
最終ジャッジ日時 | 2024-05-10 03:42:29 |
合計ジャッジ時間 | 4,533 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,984 KB |
testcase_01 | AC | 43 ms
59,648 KB |
testcase_02 | AC | 43 ms
60,160 KB |
testcase_03 | AC | 81 ms
81,152 KB |
testcase_04 | AC | 174 ms
141,312 KB |
testcase_05 | AC | 271 ms
142,208 KB |
testcase_06 | AC | 273 ms
142,464 KB |
testcase_07 | AC | 168 ms
141,184 KB |
testcase_08 | AC | 272 ms
142,336 KB |
testcase_09 | AC | 215 ms
141,696 KB |
testcase_10 | AC | 156 ms
111,744 KB |
testcase_11 | AC | 89 ms
84,480 KB |
testcase_12 | AC | 195 ms
121,728 KB |
testcase_13 | AC | 115 ms
96,000 KB |
testcase_14 | AC | 232 ms
131,968 KB |
testcase_15 | AC | 91 ms
84,992 KB |
testcase_16 | AC | 260 ms
140,928 KB |
testcase_17 | AC | 108 ms
96,256 KB |
testcase_18 | AC | 228 ms
132,608 KB |
testcase_19 | AC | 150 ms
116,352 KB |
testcase_20 | AC | 186 ms
136,832 KB |
ソースコード
t = int(input()) a, b, c, d, e = map(int, input().split()) M = 1000000007 m = 20020 s = 10010 dp = [0 for i in range(m)] dp[s] = 1 for i in range(t): nex = [0 for i in range(m)] for j in range(m): if dp[j] > 0: nex[j + a] = (nex[j + a] + dp[j]) % M nex[j - a] = (nex[j - a] + dp[j]) % M nex[j + b] = (nex[j + b] + dp[j]) % M nex[j - b] = (nex[j - b] + dp[j]) % M nex[j + c] = (nex[j + c] + dp[j]) % M nex[j - c] = (nex[j - c] + dp[j]) % M dp = nex ans = 0 for i in range(s + d, s + e + 1): ans = (ans + dp[i]) % M print(ans)