結果

問題 No.2835 Take and Flip
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-08-24 18:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 105,156 KB
最終ジャッジ日時 2024-08-24 18:20:37
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,276 KB
testcase_01 AC 36 ms
53,700 KB
testcase_02 AC 41 ms
54,176 KB
testcase_03 AC 110 ms
100,744 KB
testcase_04 AC 98 ms
104,284 KB
testcase_05 AC 37 ms
53,812 KB
testcase_06 AC 124 ms
99,552 KB
testcase_07 AC 129 ms
101,688 KB
testcase_08 AC 119 ms
105,156 KB
testcase_09 AC 136 ms
102,332 KB
testcase_10 AC 133 ms
102,360 KB
testcase_11 AC 137 ms
102,592 KB
testcase_12 AC 135 ms
102,848 KB
testcase_13 AC 134 ms
102,748 KB
testcase_14 AC 74 ms
85,268 KB
testcase_15 AC 39 ms
53,840 KB
testcase_16 AC 107 ms
99,252 KB
testcase_17 AC 48 ms
65,352 KB
testcase_18 AC 128 ms
103,428 KB
testcase_19 AC 134 ms
101,892 KB
testcase_20 AC 70 ms
82,244 KB
testcase_21 AC 127 ms
99,900 KB
testcase_22 AC 102 ms
100,804 KB
testcase_23 AC 65 ms
79,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
A = sorted(list(map(int, input().split())))
q = deque(A)
x, y = 0, 0
First = True
while q:
    if First:
        x += q.pop()
    else:
        y += q.popleft()
    First ^= False
print(x - y)
0