結果

問題 No.1919 Many Monster Battles
ユーザー ShirotsumeShirotsume
提出日時 2022-04-05 00:58:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 996 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 137,756 KB
最終ジャッジ日時 2024-06-11 20:24:16
合計ジャッジ時間 14,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 45 ms
63,616 KB
testcase_04 AC 44 ms
63,488 KB
testcase_05 AC 44 ms
63,360 KB
testcase_06 AC 43 ms
63,488 KB
testcase_07 AC 44 ms
63,360 KB
testcase_08 AC 43 ms
63,616 KB
testcase_09 AC 44 ms
63,616 KB
testcase_10 AC 44 ms
63,616 KB
testcase_11 AC 44 ms
63,360 KB
testcase_12 AC 43 ms
63,744 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 553 ms
122,636 KB
testcase_19 AC 544 ms
123,132 KB
testcase_20 AC 544 ms
123,504 KB
testcase_21 AC 544 ms
121,996 KB
testcase_22 AC 570 ms
122,500 KB
testcase_23 AC 613 ms
136,576 KB
testcase_24 AC 616 ms
136,452 KB
testcase_25 AC 621 ms
136,240 KB
testcase_26 AC 617 ms
136,856 KB
testcase_27 AC 507 ms
136,612 KB
testcase_28 AC 493 ms
136,500 KB
testcase_29 AC 500 ms
137,756 KB
testcase_30 AC 478 ms
137,396 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def sumofDiff(n, A):
    A.sort()
    s = 0
    ret = 0
    for i, v in enumerate(A):
        ret += i * v - s
        s += v
        s %= mod
    return ret
m = 10 ** 6
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)) * pow(2, mod - 2, mod)


n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
mod = 10 ** 9 + 7
assert 1 <= n <= 2 * 10 ** 5
assert len(a) == len(b) == n
for v in a:
    assert 1 <= v <= 10 ** 9
for v in b:
    assert 1 <= v <= 10 ** 9

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