結果

問題 No.2008 Super Worker
ユーザー ああいいああいい
提出日時 2022-07-17 11:26:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 135,060 KB
最終ジャッジ日時 2024-06-29 12:47:19
合計ジャッジ時間 6,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 31 ms
51,712 KB
testcase_04 AC 31 ms
51,840 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 31 ms
52,352 KB
testcase_07 AC 30 ms
52,096 KB
testcase_08 AC 32 ms
52,096 KB
testcase_09 AC 31 ms
51,840 KB
testcase_10 AC 31 ms
51,968 KB
testcase_11 AC 31 ms
51,968 KB
testcase_12 AC 32 ms
51,840 KB
testcase_13 AC 38 ms
60,800 KB
testcase_14 AC 39 ms
61,056 KB
testcase_15 AC 39 ms
61,440 KB
testcase_16 AC 39 ms
61,056 KB
testcase_17 AC 38 ms
61,312 KB
testcase_18 AC 42 ms
61,716 KB
testcase_19 AC 37 ms
59,264 KB
testcase_20 AC 38 ms
60,928 KB
testcase_21 AC 39 ms
61,056 KB
testcase_22 AC 38 ms
59,136 KB
testcase_23 AC 298 ms
120,900 KB
testcase_24 AC 297 ms
120,840 KB
testcase_25 AC 295 ms
120,132 KB
testcase_26 AC 287 ms
120,664 KB
testcase_27 AC 290 ms
120,256 KB
testcase_28 AC 333 ms
134,284 KB
testcase_29 AC 336 ms
134,224 KB
testcase_30 AC 336 ms
134,220 KB
testcase_31 AC 329 ms
134,680 KB
testcase_32 AC 325 ms
134,560 KB
testcase_33 AC 145 ms
133,964 KB
testcase_34 AC 334 ms
135,060 KB
testcase_35 AC 129 ms
119,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
P = 10 ** 9 + 7
inf = 10 ** 9
def f(x):
    a,b = x
    if b == 1:
        return inf
    else:
        return a / (b - 1)
C = [(a,b) for a,b in zip(A,B)]
C.sort(key = f)
ans = 0
now = 1
for a,b in C:
    ans += a * now
    ans %= P
    now = now * b % P
print(ans)
0