結果

問題 No.1374 Absolute Game
ユーザー roarisroaris
提出日時 2021-03-02 16:28:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-10-03 01:50:04
合計ジャッジ時間 4,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 62 ms
69,248 KB
testcase_09 AC 79 ms
78,464 KB
testcase_10 AC 84 ms
81,152 KB
testcase_11 AC 73 ms
77,184 KB
testcase_12 AC 60 ms
67,328 KB
testcase_13 AC 74 ms
75,648 KB
testcase_14 AC 91 ms
83,712 KB
testcase_15 AC 97 ms
91,648 KB
testcase_16 AC 91 ms
83,584 KB
testcase_17 AC 96 ms
91,392 KB
testcase_18 AC 89 ms
83,840 KB
testcase_19 AC 97 ms
91,264 KB
testcase_20 AC 66 ms
71,680 KB
testcase_21 AC 71 ms
75,648 KB
testcase_22 AC 95 ms
91,520 KB
testcase_23 AC 54 ms
63,232 KB
testcase_24 AC 53 ms
62,464 KB
testcase_25 AC 54 ms
63,488 KB
testcase_26 AC 60 ms
67,328 KB
testcase_27 AC 66 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
c = list(map(int, input().split()))

if sum(c)<0:
    c = list(map(lambda x: -x, c))

c.sort(reverse=True)
a, b = 0, 0

for i in range(N):
    if i%2==0:
        a += c[i]
    else:
        b += c[i]

print(abs(a)-abs(b))
0