結果

問題 No.2008 Super Worker
ユーザー stngstng
提出日時 2022-07-16 11:59:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 789 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 137,416 KB
最終ジャッジ日時 2024-06-28 11:03:44
合計ジャッジ時間 12,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,456 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 44 ms
51,840 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 41 ms
51,584 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 58 ms
62,592 KB
testcase_14 AC 58 ms
62,592 KB
testcase_15 AC 62 ms
62,464 KB
testcase_16 AC 64 ms
62,592 KB
testcase_17 AC 64 ms
62,848 KB
testcase_18 AC 65 ms
63,488 KB
testcase_19 AC 51 ms
53,504 KB
testcase_20 AC 64 ms
62,720 KB
testcase_21 AC 58 ms
62,464 KB
testcase_22 AC 46 ms
53,888 KB
testcase_23 AC 789 ms
137,020 KB
testcase_24 AC 784 ms
137,144 KB
testcase_25 AC 782 ms
137,160 KB
testcase_26 AC 783 ms
137,276 KB
testcase_27 AC 771 ms
137,416 KB
testcase_28 AC 766 ms
134,732 KB
testcase_29 AC 762 ms
134,220 KB
testcase_30 AC 767 ms
134,212 KB
testcase_31 AC 775 ms
134,488 KB
testcase_32 AC 768 ms
134,100 KB
testcase_33 AC 229 ms
134,392 KB
testcase_34 AC 755 ms
134,472 KB
testcase_35 AC 222 ms
136,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 10**9+7
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]

ab = []
for i in range(n):
    ab.append([a[i],b[i]])

li = []
#a1,b1 = ab[0]
#li.append([0,0])
#one = []
for i in range(n):
    li.append([(ab[i][1]-1)/ab[i][0],i])

#print(li)
li.sort(reverse=True)
#print(li)
#exit()


#ab.sort(key=lambda x:(-x[1],x[0]))
#print(ab)
x = 1
ans = 0
for i in range(len(li)):
    #print(li[i][1])
    ans += ab[li[i][1]][0]*x
    ans %= mod
    x *= ab[li[i][1]][1]
    x %= mod

print(ans)
0