結果

問題 No.2835 Take and Flip
ユーザー hato336hato336
提出日時 2024-08-09 21:25:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 139,880 KB
最終ジャッジ日時 2024-08-09 21:26:10
合計ジャッジ時間 6,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
85,708 KB
testcase_01 AC 161 ms
85,620 KB
testcase_02 AC 117 ms
85,864 KB
testcase_03 AC 189 ms
139,848 KB
testcase_04 AC 188 ms
139,880 KB
testcase_05 AC 122 ms
85,956 KB
testcase_06 AC 237 ms
133,108 KB
testcase_07 AC 216 ms
137,332 KB
testcase_08 AC 211 ms
133,828 KB
testcase_09 AC 222 ms
137,316 KB
testcase_10 AC 218 ms
136,976 KB
testcase_11 AC 244 ms
136,908 KB
testcase_12 AC 221 ms
137,596 KB
testcase_13 AC 218 ms
137,220 KB
testcase_14 AC 169 ms
104,852 KB
testcase_15 AC 115 ms
85,580 KB
testcase_16 AC 186 ms
116,780 KB
testcase_17 AC 135 ms
90,104 KB
testcase_18 AC 212 ms
128,520 KB
testcase_19 AC 223 ms
137,120 KB
testcase_20 AC 160 ms
102,748 KB
testcase_21 AC 213 ms
133,524 KB
testcase_22 AC 197 ms
119,996 KB
testcase_23 AC 171 ms
100,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
n = int(input())
alist = list(map(int,input().split()))
#alist = []
#s = input()
#n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
x = 0
y = 0
t = 0
a = []
b = []
for i in alist:
    if i > 0:
        a.append(i)
    elif i < 0:
        b.append(-i)
a.sort()
b.sort()
a = collections.deque(a)
b = collections.deque(b)
for i in range(n):
    if len(a) >= 1 and len(b) >= 1:
        if t == 0:
            x += a.pop()
        else:
            y += b.pop()
    elif a:
        if t == 0:
            x += a.pop()
        else:
            y -= a.popleft()
    elif b:
        if t == 0:
            x -= b.popleft()
        else:
            y += b.pop()
    else:
        break
    t ^= 1

print(x-y)

0