結果

問題 No.2835 Take and Flip
ユーザー tkykwtnbtkykwtnb
提出日時 2024-08-09 21:26:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 104,184 KB
最終ジャッジ日時 2024-08-09 21:26:23
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 41 ms
53,248 KB
testcase_03 AC 109 ms
101,416 KB
testcase_04 AC 117 ms
104,184 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 137 ms
99,624 KB
testcase_07 AC 141 ms
101,752 KB
testcase_08 AC 131 ms
98,892 KB
testcase_09 AC 147 ms
102,512 KB
testcase_10 AC 148 ms
102,396 KB
testcase_11 AC 145 ms
102,664 KB
testcase_12 AC 148 ms
103,360 KB
testcase_13 AC 150 ms
102,916 KB
testcase_14 AC 83 ms
85,888 KB
testcase_15 AC 42 ms
53,504 KB
testcase_16 AC 113 ms
98,944 KB
testcase_17 AC 53 ms
65,408 KB
testcase_18 AC 120 ms
103,552 KB
testcase_19 AC 143 ms
102,044 KB
testcase_20 AC 79 ms
83,200 KB
testcase_21 AC 138 ms
99,932 KB
testcase_22 AC 113 ms
100,608 KB
testcase_23 AC 82 ms
80,512 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)
    i+=1
print(X-Y)
0