結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
54,092 KB
testcase_01 AC 32 ms
53,860 KB
testcase_02 AC 31 ms
52,940 KB
testcase_03 AC 59 ms
73,560 KB
testcase_04 AC 62 ms
74,700 KB
testcase_05 AC 62 ms
74,728 KB
testcase_06 AC 61 ms
73,952 KB
testcase_07 AC 62 ms
74,776 KB
testcase_08 AC 60 ms
73,652 KB
testcase_09 AC 64 ms
74,164 KB
testcase_10 AC 58 ms
72,456 KB
testcase_11 AC 65 ms
74,056 KB
testcase_12 AC 62 ms
74,532 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 636 ms
122,396 KB
testcase_19 AC 655 ms
122,644 KB
testcase_20 AC 644 ms
123,028 KB
testcase_21 AC 646 ms
122,004 KB
testcase_22 AC 656 ms
122,912 KB
testcase_23 AC 1,608 ms
189,032 KB
testcase_24 AC 1,572 ms
188,964 KB
testcase_25 AC 1,566 ms
174,584 KB
testcase_26 AC 1,570 ms
175,844 KB
testcase_27 AC 1,437 ms
151,240 KB
testcase_28 AC 1,270 ms
146,872 KB
testcase_29 AC 1,417 ms
163,364 KB
testcase_30 AC 1,231 ms
152,500 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,364 ms
238,460 KB
testcase_34 AC 1,377 ms
236,816 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 ** 10 + 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