結果

問題 No.2008 Super Worker
ユーザー googol_S0googol_S0
提出日時 2022-07-15 21:43:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 321 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 158,952 KB
最終ジャッジ日時 2024-06-27 17:21:14
合計ジャッジ時間 8,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
87,388 KB
testcase_01 AC 114 ms
79,988 KB
testcase_02 AC 111 ms
80,472 KB
testcase_03 AC 111 ms
79,844 KB
testcase_04 AC 113 ms
80,060 KB
testcase_05 AC 110 ms
80,008 KB
testcase_06 AC 112 ms
80,216 KB
testcase_07 AC 111 ms
80,396 KB
testcase_08 AC 109 ms
79,724 KB
testcase_09 AC 112 ms
80,196 KB
testcase_10 AC 112 ms
79,928 KB
testcase_11 AC 111 ms
80,016 KB
testcase_12 AC 113 ms
80,040 KB
testcase_13 AC 253 ms
90,100 KB
testcase_14 AC 300 ms
90,424 KB
testcase_15 AC 257 ms
89,984 KB
testcase_16 AC 280 ms
90,308 KB
testcase_17 AC 295 ms
90,436 KB
testcase_18 AC 276 ms
90,540 KB
testcase_19 AC 225 ms
90,404 KB
testcase_20 AC 238 ms
89,976 KB
testcase_21 AC 234 ms
90,168 KB
testcase_22 AC 229 ms
90,432 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
from decimal import *
getcontext().prec=30
X=[(Decimal(B[i]-1)/Decimal(A[i]),A[i],B[i]) for i in range(N)]
X.sort(reverse=True)
ANS=0
V=1
mod=998244353
mod=10**9+7
for i in range(N):
  ANS=(ANS+V*X[i][1])%mod
  V=(V*X[i][2])%mod
print(ANS)
0