結果
問題 | No.1043 直列大学 |
ユーザー | takakin |
提出日時 | 2020-05-28 22:54:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 606 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,044 KB |
最終ジャッジ日時 | 2024-10-13 12:46:49 |
合計ジャッジ時間 | 7,593 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
17,572 KB |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | AC | 29 ms
10,624 KB |
testcase_04 | AC | 26 ms
10,752 KB |
testcase_05 | AC | 26 ms
10,752 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 27 ms
10,752 KB |
testcase_08 | AC | 26 ms
10,752 KB |
testcase_09 | AC | 161 ms
11,008 KB |
testcase_10 | AC | 383 ms
11,648 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n,m=map(int,input().split()) V=[int(i) for i in input().split()] R=[int(i) for i in input().split()] a,b=map(int,input().split()) v,r=sum(V),sum(R) VT=[1]+[0]*v RT=[1]+[0]*r for i in range(n): for j in range(v)[::-1]: if j+1>=V[i]: VT[j+1]+=VT[j+1-V[i]] for i in range(m): for j in range(r)[::-1]: if j+1>=R[i]: RT[j+1]+=RT[j+1-R[i]] VTT=[0] for i in range(v+1): VTT.append(VTT[-1]+VT[i]) mod=10**9+7 ans=0 for i in range(r+1): ans+=(VTT[min(v+1,i*b+1)]-VTT[min(v+1,i*a)])*RT[i] if ans>mod: ans%=mod print(ans-1)