結果

問題 No.2835 Take and Flip
ユーザー tkykwtnbtkykwtnb
提出日時 2024-08-09 21:25:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-08-09 21:25:09
合計ジャッジ時間 3,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 50 ms
53,504 KB
testcase_03 AC 113 ms
101,036 KB
testcase_04 AC 116 ms
104,228 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 135 ms
99,724 KB
testcase_07 AC 144 ms
101,736 KB
testcase_08 AC 126 ms
105,088 KB
testcase_09 AC 144 ms
102,260 KB
testcase_10 AC 146 ms
102,344 KB
testcase_11 AC 147 ms
102,272 KB
testcase_12 AC 144 ms
103,052 KB
testcase_13 AC 151 ms
102,628 KB
testcase_14 AC 85 ms
84,096 KB
testcase_15 AC 42 ms
53,504 KB
testcase_16 AC 110 ms
98,944 KB
testcase_17 AC 54 ms
64,896 KB
testcase_18 AC 120 ms
103,552 KB
testcase_19 AC 141 ms
101,916 KB
testcase_20 AC 83 ms
81,664 KB
testcase_21 AC 138 ms
100,068 KB
testcase_22 AC 116 ms
100,608 KB
testcase_23 AC 75 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
A=list(map(int,input().split()))
A=deque(sorted(A))
X=0
Y=0
i=0
while A:
    if i%2==0:X+=A.pop()
    else:Y+=A.popleft()*(-1)
print(X-Y)
0