結果

問題 No.1268 Fruit Rush 2
ユーザー ayaoniayaoni
提出日時 2020-10-24 00:39:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 232,284 KB
最終ジャッジ日時 2024-07-21 14:27:48
合計ジャッジ時間 6,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,064 KB
testcase_01 AC 44 ms
54,500 KB
testcase_02 AC 41 ms
54,436 KB
testcase_03 AC 41 ms
54,344 KB
testcase_04 AC 41 ms
54,568 KB
testcase_05 AC 41 ms
54,532 KB
testcase_06 AC 41 ms
54,152 KB
testcase_07 AC 41 ms
53,884 KB
testcase_08 AC 42 ms
54,924 KB
testcase_09 AC 41 ms
54,744 KB
testcase_10 AC 43 ms
54,912 KB
testcase_11 AC 41 ms
55,124 KB
testcase_12 AC 41 ms
54,692 KB
testcase_13 AC 42 ms
53,940 KB
testcase_14 AC 41 ms
53,976 KB
testcase_15 AC 42 ms
54,016 KB
testcase_16 AC 185 ms
147,328 KB
testcase_17 AC 173 ms
138,812 KB
testcase_18 AC 177 ms
139,516 KB
testcase_19 AC 174 ms
139,104 KB
testcase_20 AC 185 ms
139,752 KB
testcase_21 AC 177 ms
139,104 KB
testcase_22 AC 186 ms
147,196 KB
testcase_23 AC 188 ms
146,940 KB
testcase_24 AC 177 ms
139,628 KB
testcase_25 AC 180 ms
139,104 KB
testcase_26 AC 347 ms
232,284 KB
testcase_27 AC 339 ms
232,184 KB
testcase_28 AC 342 ms
232,132 KB
testcase_29 AC 343 ms
232,080 KB
testcase_30 AC 350 ms
232,136 KB
testcase_31 AC 198 ms
140,772 KB
testcase_32 AC 198 ms
141,168 KB
testcase_33 AC 179 ms
170,616 KB
testcase_34 AC 189 ms
174,684 KB
testcase_35 AC 200 ms
204,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N = I()
A = LI()
A.sort()
d = defaultdict(int)  # d[a] == 1 ⇔ a in A
for a in A:
    d[a] = 1

count = defaultdict(int)
# count[a] = A内の要素で構成された初項a、公差2の等差数列の最大の長さ
for a in A:
    count[a] = 0

for a in A:
    if count[a] == 0:
        b = a
        while d[b] == 1:
            b += 2
        r = (b-a)//2
        for i in range(a,b,2):
            count[i] = r-(i-a)//2

ans = N
for a in A:
    ans += count[a+1]

print(ans)
0