結果

問題 No.2008 Super Worker
ユーザー nikumakarenikumakare
提出日時 2022-07-15 21:51:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,293 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 119,812 KB
最終ジャッジ日時 2024-06-27 17:32:56
合計ジャッジ時間 17,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,184 KB
testcase_01 AC 44 ms
56,440 KB
testcase_02 AC 44 ms
55,004 KB
testcase_03 AC 46 ms
56,208 KB
testcase_04 AC 43 ms
55,428 KB
testcase_05 AC 44 ms
55,452 KB
testcase_06 AC 43 ms
55,544 KB
testcase_07 AC 44 ms
56,548 KB
testcase_08 AC 44 ms
55,376 KB
testcase_09 AC 43 ms
56,180 KB
testcase_10 AC 43 ms
55,236 KB
testcase_11 AC 42 ms
54,940 KB
testcase_12 AC 45 ms
56,328 KB
testcase_13 AC 62 ms
71,520 KB
testcase_14 AC 63 ms
75,064 KB
testcase_15 AC 61 ms
72,668 KB
testcase_16 AC 62 ms
73,628 KB
testcase_17 AC 63 ms
73,896 KB
testcase_18 AC 70 ms
77,468 KB
testcase_19 AC 55 ms
68,468 KB
testcase_20 AC 61 ms
71,528 KB
testcase_21 AC 62 ms
72,340 KB
testcase_22 AC 54 ms
67,276 KB
testcase_23 AC 1,276 ms
119,812 KB
testcase_24 AC 1,266 ms
118,908 KB
testcase_25 AC 1,245 ms
119,796 KB
testcase_26 AC 1,248 ms
119,784 KB
testcase_27 AC 1,270 ms
119,552 KB
testcase_28 AC 1,241 ms
115,228 KB
testcase_29 AC 1,248 ms
115,484 KB
testcase_30 AC 1,247 ms
114,972 KB
testcase_31 AC 1,248 ms
115,368 KB
testcase_32 AC 1,248 ms
114,960 KB
testcase_33 AC 206 ms
115,008 KB
testcase_34 AC 1,293 ms
115,320 KB
testcase_35 AC 203 ms
118,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=[int(i) for i in input().split()]
B=[int(i) for i in input().split()]
T=[(A[i],B[i]) for i in range(n)]

S=sum(A)

ans=0
MOD=10**9+7

lev=1
# T.sort(key=lambda x:-((S-x[0])/x[1]))

import itertools
itr=itertools.permutations(T)

# for it in itr:
#     ans=0
#     lev=1

#     for a,b in it:
#         ans+=lev*a
#         ans%=MOD
#         lev*=b
#         lev%=MOD
    
#     if ans==2048669:
#         print(it)

from functools import cmp_to_key
def cmp(a, b):
    
    return 1 if a[1]*b[0]+a[0] < b[1]*a[0]+b[0] else -1

T.sort(key=cmp_to_key(cmp))
# print(T)

for a,b in T:
    ans+=lev*a
    ans%=MOD
    lev*=b
    lev%=MOD
        

print(ans)
0