結果

問題 No.1374 Absolute Game
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-05 23:24:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-07-02 14:33:58
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,456 KB
testcase_04 AC 37 ms
51,328 KB
testcase_05 AC 35 ms
51,592 KB
testcase_06 AC 37 ms
51,328 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 54 ms
68,224 KB
testcase_09 AC 74 ms
80,212 KB
testcase_10 AC 78 ms
82,688 KB
testcase_11 AC 66 ms
75,008 KB
testcase_12 AC 55 ms
68,096 KB
testcase_13 AC 68 ms
77,696 KB
testcase_14 AC 82 ms
86,528 KB
testcase_15 AC 85 ms
87,328 KB
testcase_16 AC 85 ms
85,760 KB
testcase_17 AC 84 ms
87,168 KB
testcase_18 AC 82 ms
86,400 KB
testcase_19 AC 83 ms
87,040 KB
testcase_20 AC 57 ms
70,016 KB
testcase_21 AC 63 ms
73,344 KB
testcase_22 AC 82 ms
87,680 KB
testcase_23 AC 47 ms
62,720 KB
testcase_24 AC 49 ms
63,232 KB
testcase_25 AC 47 ms
64,784 KB
testcase_26 AC 52 ms
68,480 KB
testcase_27 AC 58 ms
71,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if sum(A) < 0:
    A = [-a for a in A]

A.sort()
X = Y = 0
f = 1
while A:
    if f:
        X += A.pop()
    else:
        Y += A.pop()
    f = 1 - f

print(abs(X)-abs(Y))
0