結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
85,248 KB
testcase_01 AC 118 ms
80,000 KB
testcase_02 AC 123 ms
79,744 KB
testcase_03 AC 118 ms
79,744 KB
testcase_04 AC 120 ms
79,744 KB
testcase_05 AC 122 ms
79,744 KB
testcase_06 AC 120 ms
79,872 KB
testcase_07 AC 118 ms
79,744 KB
testcase_08 AC 120 ms
79,744 KB
testcase_09 AC 122 ms
80,000 KB
testcase_10 AC 123 ms
79,872 KB
testcase_11 AC 118 ms
80,000 KB
testcase_12 AC 120 ms
79,872 KB
testcase_13 AC 260 ms
90,112 KB
testcase_14 AC 302 ms
90,368 KB
testcase_15 AC 268 ms
90,368 KB
testcase_16 AC 291 ms
90,496 KB
testcase_17 AC 295 ms
90,368 KB
testcase_18 AC 284 ms
90,624 KB
testcase_19 AC 235 ms
90,112 KB
testcase_20 AC 239 ms
89,856 KB
testcase_21 AC 238 ms
89,856 KB
testcase_22 AC 231 ms
89,984 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=50
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