結果

問題 No.2008 Super Worker
ユーザー AEnAEn
提出日時 2022-11-30 23:59:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 140,760 KB
最終ジャッジ日時 2024-10-07 19:31:29
合計ジャッジ時間 10,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,268 KB
testcase_01 AC 32 ms
51,584 KB
testcase_02 AC 31 ms
51,584 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 34 ms
51,456 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 33 ms
51,840 KB
testcase_09 AC 32 ms
52,224 KB
testcase_10 AC 32 ms
51,840 KB
testcase_11 AC 32 ms
51,712 KB
testcase_12 AC 32 ms
51,840 KB
testcase_13 AC 40 ms
61,696 KB
testcase_14 AC 42 ms
61,568 KB
testcase_15 AC 41 ms
61,568 KB
testcase_16 AC 43 ms
61,952 KB
testcase_17 AC 42 ms
61,696 KB
testcase_18 AC 44 ms
62,592 KB
testcase_19 AC 38 ms
59,264 KB
testcase_20 AC 42 ms
61,824 KB
testcase_21 AC 41 ms
61,696 KB
testcase_22 AC 38 ms
59,392 KB
testcase_23 AC 620 ms
140,612 KB
testcase_24 AC 628 ms
140,760 KB
testcase_25 AC 631 ms
140,436 KB
testcase_26 AC 632 ms
140,688 KB
testcase_27 AC 629 ms
140,644 KB
testcase_28 AC 616 ms
130,512 KB
testcase_29 AC 633 ms
130,336 KB
testcase_30 AC 621 ms
130,632 KB
testcase_31 AC 623 ms
130,384 KB
testcase_32 AC 624 ms
130,256 KB
testcase_33 AC 178 ms
128,972 KB
testcase_34 AC 622 ms
130,624 KB
testcase_35 AC 177 ms
138,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = []
for i, (a, b) in enumerate(zip(A, B)):
    C.append([(b-1)/a,i])
C.sort(reverse=True)

res = 0
lev = 1
mod =10**9+7
for i in range(N):
    res += A[C[i][1]]*lev
    res %= mod
    lev *= B[C[i][1]]
    lev %= mod
print(res)

0