結果
問題 | No.1043 直列大学 |
ユーザー | amyu |
提出日時 | 2020-05-01 22:03:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 799 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 31,796 KB |
最終ジャッジ日時 | 2024-06-07 08:47:14 |
合計ジャッジ時間 | 5,026 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
17,280 KB |
testcase_01 | AC | 58 ms
11,776 KB |
testcase_02 | AC | 64 ms
11,520 KB |
testcase_03 | AC | 62 ms
11,776 KB |
testcase_04 | AC | 59 ms
11,520 KB |
testcase_05 | AC | 62 ms
11,648 KB |
testcase_06 | AC | 63 ms
11,904 KB |
testcase_07 | AC | 61 ms
11,904 KB |
testcase_08 | AC | 65 ms
11,648 KB |
testcase_09 | AC | 115 ms
15,616 KB |
testcase_10 | AC | 190 ms
16,436 KB |
testcase_11 | AC | 261 ms
16,264 KB |
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 | -- | - |
ソースコード
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 import collections V=collections.defaultdict(int) R=collections.defaultdict(int) V[0]=1 R[0]=1 for i in v: d=V.copy() for j in d.keys(): V[j+i]+=d[j] V[j+i]%=mod for i in r: d=R.copy() for j in d.keys(): R[j+i]+=d[j] R[j+i]%=mod Vkumi=[0 for i in range(100001)] del V[0] del R[0] for i,j in V.items(): Vkumi[i]=j for i in range(1,100001): Vkumi[i]+=Vkumi[i-1] Vkumi[i]%=mod ans=0 for i,j in R.items(): if i*a>10**5: continue elif i*b>10**5: ans+=(Vkumi[-1]-Vkumi[i*a-1])*j%mod ans%=mod else: ans+=(Vkumi[i*b]-Vkumi[i*a-1])*j%mod ans%=mod print(ans)