結果

問題 No.838 Noelちゃんと星々3
ユーザー tcltktcltk
提出日時 2021-01-18 19:42:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 107,808 KB
最終ジャッジ日時 2024-12-14 10:48:33
合計ジャッジ時間 6,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 138 ms
89,076 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 136 ms
88,708 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 138 ms
88,844 KB
testcase_17 AC 137 ms
89,180 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 135 ms
88,944 KB
testcase_21 AC 136 ms
89,080 KB
testcase_22 AC 137 ms
89,244 KB
testcase_23 AC 138 ms
89,148 KB
testcase_24 AC 138 ms
88,992 KB
testcase_25 AC 137 ms
89,108 KB
testcase_26 AC 141 ms
89,136 KB
testcase_27 AC 139 ms
89,068 KB
testcase_28 AC 136 ms
89,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)



def main():
    N = int(input())
    Y = [-10**12] + sorted(list(map(int, input().split()))) + [10**12]

    i = 1
    v = 0
    prev = Y[0]
    while i < N+1:
        if Y[i] - prev < Y[i+1] - Y[i]:
            # 下の方が近い
            v += Y[i] - prev
            i += 1
        else:
            # 上の方が近い
            v += Y[i+1] - Y[i]
            prev = Y[i+1]
            i += 2
    print(v)

if __name__ == '__main__':
    main()
0