結果

問題 No.2008 Super Worker
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-07-16 10:20:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,319 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 138,412 KB
最終ジャッジ日時 2024-06-28 09:05:06
合計ジャッジ時間 17,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,528 KB
testcase_01 AC 46 ms
54,656 KB
testcase_02 AC 45 ms
54,656 KB
testcase_03 AC 47 ms
54,400 KB
testcase_04 AC 46 ms
54,400 KB
testcase_05 AC 46 ms
55,168 KB
testcase_06 AC 46 ms
54,272 KB
testcase_07 AC 46 ms
54,272 KB
testcase_08 AC 46 ms
54,656 KB
testcase_09 AC 46 ms
54,272 KB
testcase_10 AC 46 ms
54,912 KB
testcase_11 AC 46 ms
54,656 KB
testcase_12 AC 46 ms
54,784 KB
testcase_13 AC 63 ms
69,248 KB
testcase_14 AC 65 ms
72,320 KB
testcase_15 AC 63 ms
70,528 KB
testcase_16 AC 63 ms
71,296 KB
testcase_17 AC 63 ms
71,424 KB
testcase_18 AC 71 ms
76,416 KB
testcase_19 AC 58 ms
67,840 KB
testcase_20 AC 63 ms
70,528 KB
testcase_21 AC 63 ms
70,400 KB
testcase_22 AC 60 ms
67,584 KB
testcase_23 AC 1,292 ms
137,340 KB
testcase_24 AC 1,293 ms
137,140 KB
testcase_25 AC 1,291 ms
137,416 KB
testcase_26 AC 1,283 ms
137,160 KB
testcase_27 AC 1,309 ms
137,596 KB
testcase_28 AC 1,291 ms
131,600 KB
testcase_29 AC 1,306 ms
131,840 KB
testcase_30 AC 1,319 ms
131,336 KB
testcase_31 AC 1,312 ms
131,796 KB
testcase_32 AC 1,296 ms
131,604 KB
testcase_33 AC 227 ms
131,000 KB
testcase_34 AC 1,281 ms
132,088 KB
testcase_35 AC 227 ms
138,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
def compare(ab1,ab2):
    a1,b1 = ab1
    a2,b2 = ab2
    if a1 + b1 * a2 >= a2 + a1 * b2:return -1
    else:return 1
ab = [tmp for tmp in zip(*[a,b])]
from functools import cmp_to_key
ab.sort(key=cmp_to_key(compare))
ans = 0
lb = 1
mod = 10 ** 9 + 7
for aa,bb in ab:
    ans += lb * aa
    lb *= bb
    ans %= mod
    lb %= mod
print(ans)
0