結果

問題 No.1374 Absolute Game
ユーザー 👑 KazunKazun
提出日時 2021-02-05 21:45:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,760 KB
最終ジャッジ日時 2024-07-02 11:57:50
合計ジャッジ時間 3,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 47 ms
53,632 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 81 ms
80,512 KB
testcase_09 AC 104 ms
90,880 KB
testcase_10 AC 108 ms
92,032 KB
testcase_11 AC 95 ms
85,364 KB
testcase_12 AC 88 ms
80,640 KB
testcase_13 AC 102 ms
88,528 KB
testcase_14 AC 118 ms
94,336 KB
testcase_15 AC 119 ms
94,688 KB
testcase_16 AC 117 ms
94,732 KB
testcase_17 AC 121 ms
94,464 KB
testcase_18 AC 120 ms
94,464 KB
testcase_19 AC 122 ms
94,760 KB
testcase_20 AC 91 ms
82,048 KB
testcase_21 AC 94 ms
84,480 KB
testcase_22 AC 119 ms
94,592 KB
testcase_23 AC 66 ms
69,760 KB
testcase_24 AC 68 ms
72,064 KB
testcase_25 AC 69 ms
73,856 KB
testcase_26 AC 82 ms
80,768 KB
testcase_27 AC 88 ms
84,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
from collections import deque

N=int(input())
C=list(map(int,input().split()))
C.sort()

T=[]
for i,j in product([0,1],repeat=2):
    Q=deque(C[:])
    a=b=0
    for k in range(N):
        if k%2==0:
            if i==0:
                x=Q.popleft()
            else:
                x=Q.pop()
            a+=x
        else:
            if j==0:
                y=Q.popleft()
            else:
                y=Q.pop()
            b+=y
    T.append(abs(a)-abs(b))

nn,np,pn,pp=T
print(max(min(nn,np),min(pn,pp)))
0