結果

問題 No.1374 Absolute Game
ユーザー rlangevinrlangevin
提出日時 2023-06-15 08:59:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 86,740 KB
最終ジャッジ日時 2024-06-23 10:49:37
合計ジャッジ時間 3,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,156 KB
testcase_01 AC 35 ms
52,068 KB
testcase_02 AC 36 ms
52,904 KB
testcase_03 AC 36 ms
53,540 KB
testcase_04 AC 37 ms
52,528 KB
testcase_05 AC 36 ms
53,020 KB
testcase_06 AC 37 ms
53,644 KB
testcase_07 AC 36 ms
53,420 KB
testcase_08 AC 53 ms
68,052 KB
testcase_09 AC 70 ms
80,400 KB
testcase_10 AC 76 ms
82,260 KB
testcase_11 AC 62 ms
74,480 KB
testcase_12 AC 54 ms
68,896 KB
testcase_13 AC 67 ms
77,372 KB
testcase_14 AC 81 ms
85,664 KB
testcase_15 AC 82 ms
86,740 KB
testcase_16 AC 80 ms
85,256 KB
testcase_17 AC 82 ms
85,664 KB
testcase_18 AC 80 ms
85,120 KB
testcase_19 AC 81 ms
85,764 KB
testcase_20 AC 56 ms
69,952 KB
testcase_21 AC 60 ms
73,356 KB
testcase_22 AC 81 ms
86,616 KB
testcase_23 AC 46 ms
62,812 KB
testcase_24 AC 46 ms
64,796 KB
testcase_25 AC 47 ms
64,808 KB
testcase_26 AC 53 ms
68,216 KB
testcase_27 AC 58 ms
72,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = list(map(int, input().split()))
if sum(C) < 0:
    for i in range(N):
        C[i] = -C[i]

a, b = 0, 0
C.sort(reverse=True)
for i in range(N):
    if i % 2 == 0:
        a += C[i]
    else:
        b += C[i]

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