結果
問題 | No.1043 直列大学 |
ユーザー | ronpoo |
提出日時 | 2023-09-06 13:58:49 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 82,452 KB |
実行使用メモリ | 105,544 KB |
最終ジャッジ日時 | 2024-06-24 08:29:08 |
合計ジャッジ時間 | 6,717 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
69,552 KB |
testcase_01 | AC | 54 ms
69,080 KB |
testcase_02 | AC | 58 ms
69,656 KB |
testcase_03 | AC | 53 ms
68,724 KB |
testcase_04 | AC | 51 ms
69,600 KB |
testcase_05 | AC | 53 ms
69,364 KB |
testcase_06 | AC | 53 ms
68,740 KB |
testcase_07 | AC | 56 ms
69,684 KB |
testcase_08 | AC | 56 ms
69,688 KB |
testcase_09 | AC | 107 ms
75,264 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 186 ms
81,580 KB |
testcase_29 | AC | 81 ms
72,100 KB |
testcase_30 | AC | 192 ms
89,172 KB |
ソースコード
N, M = map(int, input().split()) V = list(map(int, input().split())) R = list(map(int, input().split())) A, B = map(int, input().split()) MOD = 10**9 + 7 dpv = [0] * (10**5+1) dpv[0] = 1 for i in range(N): for j in range(10**5, -1, -1): if V[i] + j <= 10**5 and dpv[j] > 0: dpv[V[i]+j] += dpv[j] dpr = [0] * (10**5+1) dpr[0] = 1 for i in range(M): for j in range(10**5, -1, -1): if R[i] + j <= 10**5 and dpr[j] > 0: dpr[R[i]+j] += dpr[j] accv = [0] for i in range(10**5): accv.append(accv[i] + dpv[i+1]) ans = 0 for i in range(1, len(dpr)): if dpr[i] == 0: continue low = A * i - 1 hig = B * i num = (accv[hig] - accv[low]) * dpr[i] ans += (num % MOD) ans %= MOD print(ans)