結果

問題 No.1374 Absolute Game
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-18 12:57:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 88,520 KB
最終ジャッジ日時 2024-06-22 04:13:48
合計ジャッジ時間 3,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,664 KB
testcase_01 AC 34 ms
53,068 KB
testcase_02 AC 33 ms
52,400 KB
testcase_03 AC 32 ms
52,196 KB
testcase_04 AC 32 ms
52,124 KB
testcase_05 AC 31 ms
53,072 KB
testcase_06 AC 32 ms
52,500 KB
testcase_07 AC 31 ms
53,148 KB
testcase_08 AC 46 ms
69,120 KB
testcase_09 AC 66 ms
79,700 KB
testcase_10 AC 68 ms
83,016 KB
testcase_11 AC 58 ms
74,840 KB
testcase_12 AC 50 ms
68,088 KB
testcase_13 AC 64 ms
77,412 KB
testcase_14 AC 76 ms
86,340 KB
testcase_15 AC 73 ms
88,468 KB
testcase_16 AC 73 ms
86,208 KB
testcase_17 AC 76 ms
88,520 KB
testcase_18 AC 73 ms
86,488 KB
testcase_19 AC 76 ms
87,500 KB
testcase_20 AC 50 ms
70,132 KB
testcase_21 AC 55 ms
74,544 KB
testcase_22 AC 73 ms
87,204 KB
testcase_23 AC 41 ms
62,524 KB
testcase_24 AC 44 ms
63,304 KB
testcase_25 AC 43 ms
65,776 KB
testcase_26 AC 48 ms
68,180 KB
testcase_27 AC 53 ms
73,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
c=list(map(int,input().split()))
if sum(c)<0:
  c=[-x for x in c]
c.sort()
a=sum([x for x in c[0:n:2]])
b=sum([x for x in c[1:n:2]])

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