結果

問題 No.2008 Super Worker
ユーザー yas_yasyuyas_yasyu
提出日時 2022-07-15 23:35:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 137,480 KB
最終ジャッジ日時 2024-06-27 21:07:10
合計ジャッジ時間 10,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 39 ms
51,456 KB
testcase_13 AC 47 ms
60,800 KB
testcase_14 AC 47 ms
61,312 KB
testcase_15 AC 47 ms
61,568 KB
testcase_16 AC 48 ms
61,312 KB
testcase_17 AC 47 ms
61,184 KB
testcase_18 AC 49 ms
62,336 KB
testcase_19 AC 42 ms
58,880 KB
testcase_20 AC 47 ms
61,440 KB
testcase_21 AC 47 ms
61,056 KB
testcase_22 AC 44 ms
59,136 KB
testcase_23 AC 664 ms
136,080 KB
testcase_24 AC 659 ms
136,216 KB
testcase_25 AC 665 ms
136,216 KB
testcase_26 AC 656 ms
136,424 KB
testcase_27 AC 659 ms
135,968 KB
testcase_28 AC 663 ms
134,360 KB
testcase_29 AC 655 ms
134,736 KB
testcase_30 AC 656 ms
134,356 KB
testcase_31 AC 656 ms
134,608 KB
testcase_32 AC 658 ms
134,872 KB
testcase_33 AC 177 ms
133,388 KB
testcase_34 AC 651 ms
135,744 KB
testcase_35 AC 175 ms
137,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

job_weight = []
for i in range(n):
	job_weight.append(((B[i]-1)/A[i],i))
job_weight.sort(reverse=True)

money = 0
job_power = 1
for _,job in job_weight:
	money += A[job]*job_power
	money %= MOD
	job_power *= B[job]
	job_power %= MOD
print(money)

0