結果

問題 No.1919 Many Monster Battles
ユーザー ShirotsumeShirotsume
提出日時 2022-04-05 01:06:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 739 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 146,724 KB
最終ジャッジ日時 2024-06-11 20:26:56
合計ジャッジ時間 16,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,336 KB
testcase_01 AC 33 ms
53,200 KB
testcase_02 AC 32 ms
53,888 KB
testcase_03 AC 47 ms
67,216 KB
testcase_04 AC 48 ms
67,512 KB
testcase_05 AC 48 ms
67,312 KB
testcase_06 AC 48 ms
67,000 KB
testcase_07 AC 46 ms
66,796 KB
testcase_08 AC 49 ms
66,804 KB
testcase_09 AC 48 ms
66,620 KB
testcase_10 AC 49 ms
66,792 KB
testcase_11 AC 48 ms
67,568 KB
testcase_12 AC 48 ms
67,764 KB
testcase_13 AC 738 ms
146,468 KB
testcase_14 AC 713 ms
145,196 KB
testcase_15 AC 705 ms
146,324 KB
testcase_16 AC 700 ms
146,724 KB
testcase_17 AC 717 ms
145,572 KB
testcase_18 AC 578 ms
122,136 KB
testcase_19 AC 568 ms
122,524 KB
testcase_20 AC 585 ms
122,772 KB
testcase_21 AC 567 ms
121,628 KB
testcase_22 AC 571 ms
122,396 KB
testcase_23 AC 701 ms
146,080 KB
testcase_24 AC 702 ms
146,020 KB
testcase_25 AC 711 ms
145,880 KB
testcase_26 AC 739 ms
146,168 KB
testcase_27 AC 583 ms
144,148 KB
testcase_28 AC 606 ms
144,260 KB
testcase_29 AC 594 ms
145,572 KB
testcase_30 AC 583 ms
145,876 KB
testcase_31 AC 700 ms
125,572 KB
testcase_32 AC 720 ms
124,408 KB
testcase_33 AC 498 ms
121,380 KB
testcase_34 AC 511 ms
122,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

def sumofDiff(n, A):
    A.sort()
    s = 0
    ret = 0
    for i, v in enumerate(A):
        ret += i * v - s
        ret %= mod
        s += v
        s %= mod
    return ret
m = 10 ** 9 + 1

pow2 = pow(2, mod - 2, mod)
def sumofMax(n, a, b):
    x = [a[i] + b[i] for i in range(n)]
    y = [a[i] - b[i] for i in range(n)]
    return (sumofDiff(n, x) + sumofDiff(n, y)) * pow2


n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
alice = 2 * (sumofMax(n, a, b) - sumofMax(n, [m * a[i] for i in range(n)], [(m + 1) * b[i] for i in range(n)]) + sumofMax(n, [m * a[i] for i in range(n)], [m * b[i] for i in range(n)]))

bob = 2 * (sumofMax(n, a, b) - sumofMax(n, [(m + 1) * a[i] for i in range(n)], [m * b[i] for i in range(n)]) + sumofMax(n, [m * a[i] for i in range(n)], [m * b[i] for i in range(n)]))

print((alice) % mod, (bob) % mod)
0