結果

問題 No.1374 Absolute Game
ユーザー H3PO4H3PO4
提出日時 2022-04-21 09:45:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,212 KB
最終ジャッジ日時 2024-06-22 07:34:21
合計ジャッジ時間 18,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,440 KB
testcase_01 AC 534 ms
44,184 KB
testcase_02 AC 526 ms
44,056 KB
testcase_03 AC 520 ms
44,692 KB
testcase_04 AC 520 ms
44,564 KB
testcase_05 AC 543 ms
44,444 KB
testcase_06 AC 533 ms
44,320 KB
testcase_07 AC 538 ms
44,324 KB
testcase_08 AC 542 ms
44,704 KB
testcase_09 AC 552 ms
44,192 KB
testcase_10 AC 542 ms
44,064 KB
testcase_11 AC 549 ms
44,312 KB
testcase_12 AC 521 ms
44,448 KB
testcase_13 AC 535 ms
44,436 KB
testcase_14 AC 556 ms
44,700 KB
testcase_15 AC 541 ms
44,824 KB
testcase_16 AC 549 ms
45,084 KB
testcase_17 AC 549 ms
44,700 KB
testcase_18 AC 569 ms
44,756 KB
testcase_19 AC 576 ms
45,212 KB
testcase_20 AC 565 ms
44,200 KB
testcase_21 AC 555 ms
44,188 KB
testcase_22 AC 577 ms
44,952 KB
testcase_23 AC 553 ms
44,192 KB
testcase_24 AC 541 ms
44,172 KB
testcase_25 AC 545 ms
44,704 KB
testcase_26 AC 531 ms
44,316 KB
testcase_27 AC 533 ms
44,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
C = np.fromstring(input(), dtype=np.int64, sep=' ')
if C.sum() < 0:
    C = -C
C = np.sort(C)[::-1]
ans = np.abs(np.sum(C[0::2])) - np.abs(np.sum(C[1::2]))
print(ans)
0