結果

問題 No.2008 Super Worker
ユーザー lloyzlloyz
提出日時 2022-07-15 21:50:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 135,552 KB
最終ジャッジ日時 2024-06-27 17:29:46
合計ジャッジ時間 7,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
AB = []
AB1 = []
for i in range(n):
    if B[i] == 1:
        AB1.append((A[i], B[i]))
    else:
        AB.append((A[i], B[i]))

AB.sort(key=lambda x: x[0] / (x[1] - 1))
mod = 10**9 + 7
ans = 0
curr = 1
for a, b in AB:
    ans += curr * a % mod
    ans %= mod
    curr *= b
    curr %= mod
for a, _ in AB1:
    ans += curr * a % mod
    ans %= mod
print(ans)
0