結果

問題 No.1374 Absolute Game
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-02-05 22:42:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,668 KB
最終ジャッジ日時 2024-07-02 13:24:41
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 35 ms
10,752 KB
testcase_04 AC 36 ms
10,496 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 103 ms
18,764 KB
testcase_10 AC 116 ms
20,188 KB
testcase_11 WA -
testcase_12 AC 59 ms
14,208 KB
testcase_13 AC 95 ms
18,160 KB
testcase_14 AC 132 ms
21,496 KB
testcase_15 AC 131 ms
21,668 KB
testcase_16 AC 132 ms
21,544 KB
testcase_17 AC 130 ms
21,252 KB
testcase_18 AC 131 ms
21,408 KB
testcase_19 AC 130 ms
21,540 KB
testcase_20 AC 64 ms
14,600 KB
testcase_21 AC 78 ms
16,088 KB
testcase_22 AC 128 ms
21,164 KB
testcase_23 AC 38 ms
11,648 KB
testcase_24 AC 43 ms
12,288 KB
testcase_25 AC 46 ms
12,416 KB
testcase_26 AC 58 ms
13,804 KB
testcase_27 AC 73 ms
15,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
c = list(map(int, input().split()))
c.sort()
sei = [i for i in c if i >= 0]
sei.sort()
hu = [i for i in c if i < 0]
hu.sort()
a, b = 0, 0
for i in range(len(sei)):
    if i % 2:
        b += sei[i]
    else:
        a += sei[i]
seile = len(sei)
for i in range(len(hu)):
    if (i + seile) % 2:
        b += hu[i]
    else:
        a += hu[i]
print(abs(abs(a) - abs(b)))
0