結果

問題 No.2008 Super Worker
ユーザー titiatitia
提出日時 2022-07-16 00:49:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 50,500 KB
最終ジャッジ日時 2024-06-27 22:52:22
合計ジャッジ時間 9,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 33 ms
11,136 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 535 ms
48,164 KB
testcase_24 AC 531 ms
48,036 KB
testcase_25 AC 543 ms
48,088 KB
testcase_26 AC 536 ms
48,064 KB
testcase_27 AC 536 ms
48,072 KB
testcase_28 AC 543 ms
49,820 KB
testcase_29 AC 556 ms
49,816 KB
testcase_30 AC 551 ms
49,912 KB
testcase_31 AC 550 ms
49,720 KB
testcase_32 AC 552 ms
49,720 KB
testcase_33 AC 390 ms
48,052 KB
testcase_34 AC 545 ms
50,500 KB
testcase_35 AC 322 ms
42,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

mod=10**9+7

X=[(A[i],B[i]) for i in range(N)]
X.sort(key=lambda x:(1-x[1])/x[0])

ANS=0
level=1

for a,b in X:
    ANS+=level*a
    level*=b
    ANS%=mod
    level%=mod

print(ANS)

0