結果

問題 No.1043 直列大学
ユーザー ValkyrjaValkyrja
提出日時 2020-05-12 00:00:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 46,856 KB
最終ジャッジ日時 2024-06-02 03:17:13
合計ジャッジ時間 22,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
46,208 KB
testcase_01 AC 503 ms
46,340 KB
testcase_02 AC 510 ms
46,080 KB
testcase_03 AC 508 ms
46,728 KB
testcase_04 AC 492 ms
46,340 KB
testcase_05 AC 493 ms
46,848 KB
testcase_06 AC 505 ms
46,736 KB
testcase_07 AC 499 ms
46,468 KB
testcase_08 AC 517 ms
46,068 KB
testcase_09 AC 623 ms
46,464 KB
testcase_10 AC 665 ms
45,100 KB
testcase_11 AC 729 ms
45,344 KB
testcase_12 AC 806 ms
45,780 KB
testcase_13 AC 700 ms
46,332 KB
testcase_14 AC 701 ms
45,664 KB
testcase_15 AC 731 ms
46,348 KB
testcase_16 AC 704 ms
46,600 KB
testcase_17 AC 668 ms
45,628 KB
testcase_18 AC 676 ms
45,892 KB
testcase_19 AC 713 ms
46,604 KB
testcase_20 AC 643 ms
45,632 KB
testcase_21 AC 687 ms
45,776 KB
testcase_22 AC 689 ms
45,236 KB
testcase_23 AC 744 ms
46,020 KB
testcase_24 AC 682 ms
46,084 KB
testcase_25 AC 698 ms
46,600 KB
testcase_26 AC 717 ms
46,856 KB
testcase_27 AC 662 ms
46,468 KB
testcase_28 AC 695 ms
46,604 KB
testcase_29 AC 563 ms
46,588 KB
testcase_30 AC 637 ms
46,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=[int(j)for j in input().split()]
v=[int(j)for j in input().split()]
r=[int(j)for j in input().split()]
a,b=[int(j)for j in input().split()]
mod=10**9+7
import numpy as np
lv=np.zeros(10**5+1,dtype=np.int64)
lr=np.zeros(10**5+1,dtype=np.int64)
lv[0]=1
lr[0]=1
for i in v:
    lv[i:]+=lv[:-i]
    lv%=mod
for i in r:
    lr[i:]+=lr[:-i]
    lr%=mod
v_sum=[0]*(10**5+1)
for i in range(10**5):
    v_sum[i+1]=(v_sum[i]+lv[i])%mod

lv%=mod
lv[0]=0
ans=0
for i in np.where(lr[1:]>0)[0]:
    i=i+1
    if a*i>10**5:
        break
    ans=(ans+lr[i]*(v_sum[min(10**5,b*i+1)]-v_sum[a*i]))%mod

print(ans)
        



0