結果

問題 No.1268 Fruit Rush 2
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-20 11:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 188,192 KB
最終ジャッジ日時 2024-09-17 13:22:28
合計ジャッジ時間 9,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 32 ms
52,608 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 33 ms
52,096 KB
testcase_10 AC 34 ms
52,608 KB
testcase_11 AC 34 ms
52,352 KB
testcase_12 AC 36 ms
52,480 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 39 ms
52,528 KB
testcase_16 AC 309 ms
147,028 KB
testcase_17 AC 274 ms
137,856 KB
testcase_18 AC 287 ms
138,368 KB
testcase_19 AC 293 ms
138,240 KB
testcase_20 AC 284 ms
138,624 KB
testcase_21 AC 285 ms
138,148 KB
testcase_22 AC 365 ms
146,688 KB
testcase_23 AC 307 ms
146,688 KB
testcase_24 AC 287 ms
138,752 KB
testcase_25 AC 293 ms
137,856 KB
testcase_26 AC 362 ms
162,752 KB
testcase_27 AC 387 ms
162,516 KB
testcase_28 AC 390 ms
162,516 KB
testcase_29 AC 377 ms
162,772 KB
testcase_30 AC 390 ms
162,596 KB
testcase_31 AC 310 ms
138,880 KB
testcase_32 AC 298 ms
138,728 KB
testcase_33 AC 289 ms
174,676 KB
testcase_34 AC 446 ms
166,916 KB
testcase_35 AC 454 ms
188,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
a.sort()
d={x:1 for x in a}
from heapq import heappush,heappop,heapify
ary={x:0 for x in a}
heapify(a)
while a:
  v=heappop(a)
  if v in ary:
    if v in d:
      d[v]+=ary[v]
    else:
      d[v]=ary[v]
  if v+1 in d:
    if v+2 in ary:
      ary[v+2]+=d[v]*d[v+1]
    else:
      ary[v+2]=d[v]*d[v+1]
      heappush(a,v+2)
#print(d)
#print(ary)
ans=sum(ary.values())+n
print(ans)
0