結果

問題 No.1374 Absolute Game
ユーザー tamatotamato
提出日時 2021-02-12 20:39:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-07-19 19:29:30
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    C = list(map(int, input().split()))
    C.sort()
    A = B = 0
    for i, c in enumerate(C):
        if i&1:
            B += c
        else:
            A += c
    if N&1:
        print(abs(A) - abs(B))
    else:
        print(abs(abs(A) - abs(B)))


if __name__ == '__main__':
    main()
0