結果

問題 No.2008 Super Worker
ユーザー googol_S0googol_S0
提出日時 2022-07-15 21:44:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,160 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 64,552 KB
最終ジャッジ日時 2024-06-27 17:22:26
合計ジャッジ時間 16,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,392 KB
testcase_01 AC 32 ms
11,264 KB
testcase_02 AC 33 ms
11,264 KB
testcase_03 AC 33 ms
11,264 KB
testcase_04 AC 33 ms
11,136 KB
testcase_05 AC 32 ms
11,264 KB
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 32 ms
11,264 KB
testcase_08 AC 32 ms
11,264 KB
testcase_09 AC 32 ms
11,264 KB
testcase_10 AC 33 ms
11,392 KB
testcase_11 AC 32 ms
11,264 KB
testcase_12 AC 32 ms
11,264 KB
testcase_13 AC 36 ms
11,520 KB
testcase_14 AC 39 ms
11,520 KB
testcase_15 AC 36 ms
11,520 KB
testcase_16 AC 39 ms
11,520 KB
testcase_17 AC 38 ms
11,520 KB
testcase_18 AC 39 ms
11,648 KB
testcase_19 AC 36 ms
11,520 KB
testcase_20 AC 37 ms
11,520 KB
testcase_21 AC 37 ms
11,520 KB
testcase_22 AC 35 ms
11,520 KB
testcase_23 AC 1,156 ms
60,548 KB
testcase_24 AC 1,137 ms
60,652 KB
testcase_25 AC 1,143 ms
60,580 KB
testcase_26 AC 1,135 ms
60,680 KB
testcase_27 AC 1,127 ms
60,556 KB
testcase_28 AC 1,144 ms
64,316 KB
testcase_29 AC 1,160 ms
64,344 KB
testcase_30 AC 1,155 ms
64,372 KB
testcase_31 AC 1,137 ms
64,348 KB
testcase_32 AC 1,145 ms
64,328 KB
testcase_33 AC 550 ms
64,552 KB
testcase_34 AC 1,134 ms
64,376 KB
testcase_35 AC 838 ms
57,936 KB
権限があれば一括ダウンロードができます

ソースコード

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