結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 WA -
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 102 ms
18,752 KB
testcase_10 AC 109 ms
19,920 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 84 ms
17,896 KB
testcase_14 AC 121 ms
21,916 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 114 ms
21,532 KB
testcase_19 WA -
testcase_20 AC 59 ms
14,428 KB
testcase_21 AC 72 ms
16,208 KB
testcase_22 AC 119 ms
21,028 KB
testcase_23 AC 36 ms
11,904 KB
testcase_24 WA -
testcase_25 AC 42 ms
12,288 KB
testcase_26 AC 54 ms
13,920 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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(a) - abs(b))
0