結果

問題 No.1374 Absolute Game
ユーザー Kiri8128Kiri8128
提出日時 2021-02-05 23:20:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,852 KB
最終ジャッジ日時 2024-07-02 14:33:10
合計ジャッジ時間 3,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 49 ms
13,648 KB
testcase_09 AC 83 ms
18,852 KB
testcase_10 AC 91 ms
19,888 KB
testcase_11 AC 66 ms
16,264 KB
testcase_12 AC 51 ms
14,224 KB
testcase_13 AC 76 ms
17,988 KB
testcase_14 AC 101 ms
21,852 KB
testcase_15 AC 99 ms
21,604 KB
testcase_16 AC 101 ms
21,852 KB
testcase_17 AC 99 ms
21,728 KB
testcase_18 AC 100 ms
21,600 KB
testcase_19 AC 100 ms
21,600 KB
testcase_20 AC 54 ms
14,648 KB
testcase_21 AC 63 ms
16,176 KB
testcase_22 AC 98 ms
21,252 KB
testcase_23 AC 36 ms
11,776 KB
testcase_24 AC 40 ms
12,288 KB
testcase_25 AC 41 ms
12,624 KB
testcase_26 AC 50 ms
14,148 KB
testcase_27 AC 61 ms
15,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = sorted([int(a) for a in input().split()])
print(max(-sum(A[::2])-abs(sum(A[1::2])), sum(A[::-2])-abs(sum(A[-2::-2]))))
0