結果

問題 No.2008 Super Worker
ユーザー naniwazunaniwazu
提出日時 2023-03-19 18:55:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 81,488 KB
実行使用メモリ 135,544 KB
最終ジャッジ日時 2024-09-18 13:51:49
合計ジャッジ時間 8,214 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 38 ms
51,328 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 37 ms
51,328 KB
testcase_09 AC 38 ms
51,328 KB
testcase_10 AC 38 ms
51,328 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 38 ms
51,584 KB
testcase_13 AC 50 ms
60,416 KB
testcase_14 AC 49 ms
60,928 KB
testcase_15 AC 46 ms
60,436 KB
testcase_16 AC 47 ms
60,416 KB
testcase_17 AC 45 ms
60,928 KB
testcase_18 AC 46 ms
60,928 KB
testcase_19 AC 42 ms
58,880 KB
testcase_20 AC 46 ms
60,544 KB
testcase_21 AC 47 ms
61,056 KB
testcase_22 AC 45 ms
58,496 KB
testcase_23 AC 337 ms
120,112 KB
testcase_24 AC 329 ms
120,340 KB
testcase_25 AC 335 ms
120,056 KB
testcase_26 AC 347 ms
120,152 KB
testcase_27 AC 339 ms
120,324 KB
testcase_28 AC 398 ms
134,564 KB
testcase_29 AC 404 ms
134,736 KB
testcase_30 AC 402 ms
134,684 KB
testcase_31 AC 399 ms
134,944 KB
testcase_32 AC 396 ms
134,688 KB
testcase_33 AC 173 ms
134,220 KB
testcase_34 AC 392 ms
135,544 KB
testcase_35 AC 141 ms
118,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 10**9+7

AB = list(zip(A, B))
AB.sort(key = lambda x:(1-x[1])/x[0])

level = 1
salary = 0
for Ai, Bi in AB:
    salary += Ai*level
    salary %= mod
    level *= Bi
    level %= mod

print(salary)
0