結果

問題 No.2835 Take and Flip
ユーザー るこーそーるこーそー
提出日時 2024-09-25 13:17:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 103,904 KB
最終ジャッジ日時 2024-09-25 13:17:43
合計ジャッジ時間 4,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,208 KB
testcase_01 AC 40 ms
54,140 KB
testcase_02 AC 41 ms
54,552 KB
testcase_03 AC 109 ms
99,456 KB
testcase_04 AC 106 ms
102,384 KB
testcase_05 AC 42 ms
54,024 KB
testcase_06 AC 135 ms
99,556 KB
testcase_07 AC 140 ms
100,532 KB
testcase_08 AC 124 ms
103,904 KB
testcase_09 AC 159 ms
100,684 KB
testcase_10 AC 146 ms
100,552 KB
testcase_11 AC 145 ms
101,080 KB
testcase_12 AC 144 ms
101,324 KB
testcase_13 AC 143 ms
100,716 KB
testcase_14 AC 82 ms
86,504 KB
testcase_15 AC 41 ms
54,656 KB
testcase_16 AC 109 ms
97,976 KB
testcase_17 AC 50 ms
66,336 KB
testcase_18 AC 146 ms
102,256 KB
testcase_19 AC 141 ms
100,728 KB
testcase_20 AC 78 ms
82,912 KB
testcase_21 AC 135 ms
99,488 KB
testcase_22 AC 110 ms
99,736 KB
testcase_23 AC 75 ms
80,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n=int(input())
A=list(map(int,input().split()))

A.sort()
que=deque(A)

X,Y=0,0
for i in range(n):
    if i%2==0:
        X+=que.pop()
    else:
        Y-=que.popleft()

print(X-Y)
0