結果

問題 No.2008 Super Worker
ユーザー PNJPNJ
提出日時 2023-10-24 00:59:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,299 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 138,832 KB
最終ジャッジ日時 2024-09-22 17:59:59
合計ジャッジ時間 17,109 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,552 KB
testcase_01 AC 44 ms
55,064 KB
testcase_02 AC 45 ms
56,088 KB
testcase_03 AC 44 ms
54,856 KB
testcase_04 AC 44 ms
55,284 KB
testcase_05 AC 44 ms
55,924 KB
testcase_06 AC 44 ms
56,240 KB
testcase_07 AC 44 ms
55,760 KB
testcase_08 AC 44 ms
55,504 KB
testcase_09 AC 45 ms
55,040 KB
testcase_10 AC 45 ms
55,136 KB
testcase_11 AC 45 ms
56,056 KB
testcase_12 AC 46 ms
56,556 KB
testcase_13 AC 62 ms
71,644 KB
testcase_14 AC 63 ms
73,496 KB
testcase_15 AC 61 ms
71,944 KB
testcase_16 AC 63 ms
72,308 KB
testcase_17 AC 62 ms
73,824 KB
testcase_18 AC 69 ms
76,784 KB
testcase_19 AC 56 ms
68,760 KB
testcase_20 AC 60 ms
71,852 KB
testcase_21 AC 60 ms
72,260 KB
testcase_22 AC 55 ms
67,612 KB
testcase_23 AC 1,299 ms
123,548 KB
testcase_24 AC 1,247 ms
123,420 KB
testcase_25 AC 1,271 ms
123,556 KB
testcase_26 AC 1,256 ms
123,432 KB
testcase_27 AC 1,256 ms
123,588 KB
testcase_28 AC 1,257 ms
120,944 KB
testcase_29 AC 1,238 ms
120,836 KB
testcase_30 AC 1,269 ms
120,724 KB
testcase_31 AC 1,226 ms
120,544 KB
testcase_32 AC 1,282 ms
120,956 KB
testcase_33 AC 221 ms
138,832 KB
testcase_34 AC 1,270 ms
121,572 KB
testcase_35 AC 204 ms
121,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cmp_to_key
def cmp(x, y):
    a, b = x
    aa, bb = y
    s = a*(bb-1) - aa*(b-1)
    return 1 if s > 0 else -1 if s < 0 else 0

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
mod = 10**9 + 7
C = [(A[i],B[i]) for i in range(N)]
C.sort(key = cmp_to_key(cmp))
x = 1
ans = 0
for a,b in C:
  ans += a*x
  ans %= mod
  x *= b
  x %= mod
print(ans)
0