結果

問題 No.1374 Absolute Game
ユーザー KudeKude
提出日時 2021-02-05 22:17:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,364 KB
最終ジャッジ日時 2024-07-02 12:45:33
合計ジャッジ時間 3,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 44 ms
53,248 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 43 ms
53,248 KB
testcase_08 AC 62 ms
70,784 KB
testcase_09 AC 82 ms
83,584 KB
testcase_10 AC 87 ms
87,168 KB
testcase_11 AC 73 ms
76,928 KB
testcase_12 AC 64 ms
71,296 KB
testcase_13 AC 80 ms
81,408 KB
testcase_14 AC 93 ms
89,856 KB
testcase_15 AC 94 ms
90,112 KB
testcase_16 AC 95 ms
89,984 KB
testcase_17 AC 94 ms
90,240 KB
testcase_18 AC 92 ms
89,912 KB
testcase_19 AC 91 ms
89,984 KB
testcase_20 AC 66 ms
72,704 KB
testcase_21 AC 70 ms
75,904 KB
testcase_22 AC 93 ms
90,364 KB
testcase_23 AC 53 ms
64,256 KB
testcase_24 AC 58 ms
66,432 KB
testcase_25 AC 57 ms
67,072 KB
testcase_26 AC 65 ms
71,168 KB
testcase_27 AC 69 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
c = sorted(map(int, input().split()))
s = sum(c)

q = deque(c)
a = 0
b = s
if b >= 0:
    while q:
        v = q.pop()
        b -= v
        if q:
            q.pop()
    if b < 0:
        b = 0
    elif b > s:
        b = s
    a = s - b
    print(a - b)
else:
    while q:
        v = q.popleft()
        b -= v
        if q:
            q.popleft()
    if b > 0:
        b = 0
    elif b < s:
        b = s
    a = s - b
    print(-a - -b)
0