結果

問題 No.1043 直列大学
ユーザー pekempeypekempey
提出日時 2020-05-01 21:48:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 634 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 81,288 KB
最終ジャッジ日時 2024-06-07 04:25:34
合計ジャッジ時間 26,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 689 ms
44,288 KB
testcase_01 AC 660 ms
44,672 KB
testcase_02 AC 671 ms
44,532 KB
testcase_03 AC 658 ms
44,416 KB
testcase_04 AC 675 ms
44,656 KB
testcase_05 AC 666 ms
44,396 KB
testcase_06 AC 680 ms
44,788 KB
testcase_07 AC 670 ms
45,040 KB
testcase_08 AC 666 ms
44,420 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 924 ms
44,800 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 AC 869 ms
44,648 KB
testcase_15 RE -
testcase_16 AC 885 ms
44,672 KB
testcase_17 AC 801 ms
44,528 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 925 ms
44,804 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 731 ms
44,672 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def input_int():
    return int(input())

def input_ints():
    return list(map(int, input().split()))

import numpy as np

MOD = 10**9 + 7

N, M = input_ints()
V = input_ints()
R = input_ints()
A, B = input_ints()

dp = np.zeros(10**5 + 1, dtype=np.int64)
dp[0] = 1
for i in range(N):
    dp[V[i]:] += dp[:-V[i]]
    dp %= MOD

ep = np.zeros(10**5 + 1, dtype=np.int64)
ep[0] = 1
for i in range(N):
    ep[R[i]:] += ep[:-R[i]]
    ep %= MOD

ep = np.cumsum(ep)

ans = 0
for i in range(len(dp)):
    # i/B <= j <= i/A
    ans += dp[i] * ep[i // A]
    if i > 0:
        ans -= dp[i] * ep[(i + B - 1) // B - 1]
ans -= 1
print(ans % MOD)
0