結果
問題 | No.612 Move on grid |
ユーザー | wajima_wataru |
提出日時 | 2018-01-04 22:07:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 492 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-06-02 08:38:50 |
合計ジャッジ時間 | 6,179 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
16,384 KB |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | AC | 37 ms
11,008 KB |
testcase_03 | AC | 447 ms
11,392 KB |
testcase_04 | RE | - |
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()) nums = [0] * 20000 nums[10000] = 1 for _ in range(T): cur_nums = [0] * 20000 for i in range(20000): if nums[i]: cur_nums[i + a] += nums[i] cur_nums[i - a] += nums[i] cur_nums[i + b] += nums[i] cur_nums[i - b] += nums[i] cur_nums[i + c] += nums[i] cur_nums[i - c] += nums[i] nums = cur_nums print(sum(nums[10000 + d:10001 + e]) % 1000000007)