結果

問題 No.2008 Super Worker
ユーザー とりゐとりゐ
提出日時 2022-07-15 21:27:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 138,340 KB
最終ジャッジ日時 2024-06-27 16:50:47
合計ジャッジ時間 8,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 63 ms
69,248 KB
testcase_14 AC 81 ms
77,056 KB
testcase_15 AC 66 ms
70,016 KB
testcase_16 AC 72 ms
74,308 KB
testcase_17 AC 73 ms
74,560 KB
testcase_18 AC 84 ms
76,672 KB
testcase_19 AC 62 ms
67,584 KB
testcase_20 AC 67 ms
70,912 KB
testcase_21 AC 73 ms
74,368 KB
testcase_22 AC 65 ms
69,888 KB
testcase_23 AC 401 ms
137,112 KB
testcase_24 AC 402 ms
138,340 KB
testcase_25 AC 397 ms
132,956 KB
testcase_26 AC 396 ms
137,368 KB
testcase_27 AC 429 ms
137,700 KB
testcase_28 AC 401 ms
133,600 KB
testcase_29 AC 399 ms
132,504 KB
testcase_30 AC 408 ms
132,112 KB
testcase_31 AC 408 ms
130,648 KB
testcase_32 AC 401 ms
132,120 KB
testcase_33 AC 293 ms
131,988 KB
testcase_34 AC 414 ms
133,008 KB
testcase_35 AC 292 ms
136,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def compare(x,y):
  # 比較関数 (x<=y)

  a1,b1=x
  a2,b2=y
  if a1+b1*a2>=a2+b2*a1:
    return True
  return False

def merge(l, r):
    new = []
    ln = 0
    rn = 0
    while ln < len(l) and rn < len(r):
        if compare(l[ln],r[rn]):
            new.append(l[ln])
            ln += 1
        else:
            new.append(r[rn])
            rn += 1
    for i in range(ln, len(l)):
        new.append(l[i])
    for i in range(rn, len(r)):
        new.append(r[i])
    return new
 
def MergeSort(l):
    if len(l) == 0:
        return []
    if len(l) == 1:
        return l
    else:
        a = l[:len(l)//2]
        b = l[len(l)//2:]
        return merge(MergeSort(a), MergeSort(b))

mod=10**9+7
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
ab=[]
for i in range(n):
  ab.append((a[i],b[i]))

ab=MergeSort(ab)
ans=0
x=1
for a,b in ab:
  ans+=a*x
  ans%=mod
  x=b*x
  x%=mod

print(ans)
#print(ab)
0