結果

問題 No.1919 Many Monster Battles
ユーザー ShirotsumeShirotsume
提出日時 2022-04-05 01:04:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 875 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 238,636 KB
最終ジャッジ日時 2024-06-11 20:24:54
合計ジャッジ時間 14,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,936 KB
testcase_01 AC 30 ms
53,224 KB
testcase_02 AC 31 ms
52,744 KB
testcase_03 AC 58 ms
73,860 KB
testcase_04 AC 65 ms
74,300 KB
testcase_05 AC 65 ms
74,132 KB
testcase_06 AC 67 ms
74,300 KB
testcase_07 AC 62 ms
74,500 KB
testcase_08 AC 59 ms
73,936 KB
testcase_09 AC 59 ms
74,136 KB
testcase_10 AC 58 ms
73,216 KB
testcase_11 AC 61 ms
74,080 KB
testcase_12 AC 60 ms
74,188 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 646 ms
122,532 KB
testcase_19 AC 664 ms
122,840 KB
testcase_20 AC 668 ms
123,012 KB
testcase_21 AC 672 ms
122,180 KB
testcase_22 AC 647 ms
122,780 KB
testcase_23 AC 1,551 ms
188,704 KB
testcase_24 AC 1,592 ms
189,192 KB
testcase_25 AC 1,581 ms
174,784 KB
testcase_26 AC 1,680 ms
176,304 KB
testcase_27 AC 1,431 ms
150,972 KB
testcase_28 AC 1,272 ms
146,424 KB
testcase_29 AC 1,439 ms
163,252 KB
testcase_30 AC 1,308 ms
152,816 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,396 ms
238,636 KB
testcase_34 AC 1,419 ms
236,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 ** 10
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
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