結果

問題 No.2008 Super Worker
ユーザー Akijin_007Akijin_007
提出日時 2022-07-15 22:01:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 131,584 KB
最終ジャッジ日時 2024-06-27 17:57:20
合計ジャッジ時間 7,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 38 ms
52,136 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
52,240 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 38 ms
51,584 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 51 ms
61,696 KB
testcase_14 AC 48 ms
61,952 KB
testcase_15 AC 47 ms
61,824 KB
testcase_16 AC 47 ms
61,568 KB
testcase_17 AC 48 ms
61,440 KB
testcase_18 AC 48 ms
62,208 KB
testcase_19 AC 43 ms
58,752 KB
testcase_20 AC 47 ms
61,568 KB
testcase_21 AC 47 ms
61,568 KB
testcase_22 AC 44 ms
58,880 KB
testcase_23 AC 392 ms
127,860 KB
testcase_24 AC 403 ms
127,784 KB
testcase_25 AC 389 ms
127,808 KB
testcase_26 AC 384 ms
127,816 KB
testcase_27 AC 382 ms
128,440 KB
testcase_28 AC 379 ms
123,232 KB
testcase_29 AC 374 ms
123,004 KB
testcase_30 AC 375 ms
123,136 KB
testcase_31 AC 379 ms
123,156 KB
testcase_32 AC 391 ms
122,868 KB
testcase_33 AC 165 ms
125,380 KB
testcase_34 AC 375 ms
123,532 KB
testcase_35 AC 168 ms
131,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 10 ** 9 + 7

c = [0] * N
for i in range(N):
    if B[i] == 1:
        u = 10 ** 10
    else:
        u = A[i] / (B[i]-1)
    c[i] = [A[i], B[i], u]

c = sorted(c, key=lambda x:(x[2]))

ans = 0
x = 1
# u = [1, 0, 5, 7, 3, 4, 2, 6]
for i in range(N):
# for i in u:
    # print(c[i])
    ans += x * c[i][0]
    ans %= mod
    x = (x * c[i][1]) % mod

print(ans)
0