結果

問題 No.1374 Absolute Game
ユーザー 👑 rin204rin204
提出日時 2022-04-16 15:50:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-12-25 19:42:13
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 49 ms
51,456 KB
testcase_02 AC 47 ms
51,328 KB
testcase_03 AC 51 ms
51,584 KB
testcase_04 AC 50 ms
51,584 KB
testcase_05 AC 48 ms
51,584 KB
testcase_06 AC 48 ms
51,456 KB
testcase_07 AC 48 ms
51,712 KB
testcase_08 AC 68 ms
65,920 KB
testcase_09 AC 93 ms
78,336 KB
testcase_10 AC 97 ms
81,280 KB
testcase_11 AC 79 ms
72,448 KB
testcase_12 AC 71 ms
66,688 KB
testcase_13 AC 86 ms
75,776 KB
testcase_14 AC 106 ms
84,480 KB
testcase_15 AC 103 ms
84,096 KB
testcase_16 AC 106 ms
84,224 KB
testcase_17 AC 104 ms
83,968 KB
testcase_18 AC 104 ms
84,608 KB
testcase_19 AC 103 ms
84,096 KB
testcase_20 AC 73 ms
67,456 KB
testcase_21 AC 75 ms
70,912 KB
testcase_22 AC 101 ms
84,224 KB
testcase_23 AC 58 ms
60,800 KB
testcase_24 AC 59 ms
61,568 KB
testcase_25 AC 61 ms
63,104 KB
testcase_26 AC 72 ms
65,920 KB
testcase_27 AC 76 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
b = sum(C) - a
合計値が0:
    答えも0
合計値が正:
    aを最大にしたい
合計値が負:
    aを最小にしたい
"""

n = int(input())
C = list(map(int, input().split()))
tot = sum(C)
if tot == 0:
    print(0)
    exit()
if tot > 0:
    C.sort(reverse = True)
else:
    C.sort()
a = sum(C[0::2])
b = sum(C[1::2])
print(abs(a) - abs(b))
0