結果

問題 No.2008 Super Worker
ユーザー ryusukeryusuke
提出日時 2022-07-16 10:23:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 137,172 KB
最終ジャッジ日時 2024-06-28 09:07:28
合計ジャッジ時間 7,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
51,328 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 38 ms
51,328 KB
testcase_08 AC 38 ms
52,464 KB
testcase_09 AC 38 ms
53,040 KB
testcase_10 AC 39 ms
52,944 KB
testcase_11 AC 38 ms
52,024 KB
testcase_12 AC 38 ms
52,692 KB
testcase_13 AC 49 ms
61,748 KB
testcase_14 AC 48 ms
62,220 KB
testcase_15 AC 49 ms
61,772 KB
testcase_16 AC 48 ms
62,204 KB
testcase_17 AC 47 ms
61,624 KB
testcase_18 AC 49 ms
62,436 KB
testcase_19 AC 43 ms
58,576 KB
testcase_20 AC 48 ms
61,420 KB
testcase_21 AC 48 ms
61,212 KB
testcase_22 AC 44 ms
60,364 KB
testcase_23 AC 459 ms
136,916 KB
testcase_24 AC 458 ms
137,172 KB
testcase_25 AC 460 ms
137,172 KB
testcase_26 AC 458 ms
136,924 KB
testcase_27 AC 460 ms
136,912 KB
testcase_28 AC 457 ms
127,632 KB
testcase_29 AC 458 ms
127,640 KB
testcase_30 AC 465 ms
127,636 KB
testcase_31 AC 460 ms
127,512 KB
testcase_32 AC 466 ms
127,636 KB
testcase_33 AC 174 ms
126,532 KB
testcase_34 AC 450 ms
128,376 KB
testcase_35 AC 176 ms
135,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

l = []
for i in range(n):
    l.append((a[i], b[i], (b[i] - 1) / a[i]))

l.sort(key=lambda x: x[2], reverse=True)
ans = 0
mod = 10 ** 9 + 7
level = 1
for i in range(n):
    ans += level * l[i][0]
    level *= l[i][1]
    level %= mod
    ans %= mod

print(ans)
0