結果

問題 No.999 てん vs. ほむ
ユーザー ValkyrjaValkyrja
提出日時 2020-05-14 17:00:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 10,576 KB
実行使用メモリ 29,944 KB
最終ジャッジ日時 2023-10-13 14:47:00
合計ジャッジ時間 3,673 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,504 KB
testcase_01 AC 16 ms
8,368 KB
testcase_02 AC 16 ms
8,456 KB
testcase_03 AC 15 ms
8,452 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 16 ms
8,396 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 117 ms
29,112 KB
testcase_18 AC 115 ms
29,132 KB
testcase_19 AC 120 ms
29,152 KB
testcase_20 AC 124 ms
29,340 KB
testcase_21 AC 118 ms
29,776 KB
testcase_22 AC 115 ms
29,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[int(j) for j in input().split()]
from collections import deque
q=deque(a)
ans=0
for i in range(n):
    if q[0]-q[1]>q[-1]-q[-2]:
        ans+=q.popleft()
        ans-=q.popleft()
    else:
        ans+=q.pop()
        ans-=q.pop()
print(ans)
0