結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,328 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 53 ms
66,048 KB
testcase_09 AC 71 ms
78,208 KB
testcase_10 AC 79 ms
81,280 KB
testcase_11 AC 65 ms
72,448 KB
testcase_12 AC 55 ms
66,688 KB
testcase_13 AC 68 ms
76,032 KB
testcase_14 AC 82 ms
84,096 KB
testcase_15 AC 82 ms
83,968 KB
testcase_16 AC 82 ms
84,096 KB
testcase_17 AC 82 ms
83,840 KB
testcase_18 AC 82 ms
83,968 KB
testcase_19 AC 84 ms
84,480 KB
testcase_20 AC 56 ms
68,352 KB
testcase_21 AC 61 ms
71,680 KB
testcase_22 AC 81 ms
83,840 KB
testcase_23 AC 46 ms
61,184 KB
testcase_24 AC 48 ms
62,464 KB
testcase_25 AC 50 ms
63,360 KB
testcase_26 AC 55 ms
67,200 KB
testcase_27 AC 60 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

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