結果

問題 No.1268 Fruit Rush 2
ユーザー rlangevinrlangevin
提出日時 2023-02-07 23:37:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 186,264 KB
最終ジャッジ日時 2024-07-05 17:07:54
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,760 KB
testcase_01 AC 37 ms
53,504 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 38 ms
53,632 KB
testcase_07 AC 38 ms
53,632 KB
testcase_08 AC 38 ms
53,248 KB
testcase_09 AC 38 ms
53,632 KB
testcase_10 AC 38 ms
53,632 KB
testcase_11 AC 40 ms
53,632 KB
testcase_12 AC 38 ms
53,376 KB
testcase_13 AC 38 ms
53,632 KB
testcase_14 AC 37 ms
53,760 KB
testcase_15 AC 37 ms
53,120 KB
testcase_16 AC 155 ms
111,656 KB
testcase_17 AC 145 ms
106,892 KB
testcase_18 AC 148 ms
107,448 KB
testcase_19 AC 147 ms
107,928 KB
testcase_20 AC 151 ms
107,480 KB
testcase_21 AC 147 ms
107,048 KB
testcase_22 AC 159 ms
111,932 KB
testcase_23 AC 157 ms
111,840 KB
testcase_24 AC 147 ms
107,936 KB
testcase_25 AC 144 ms
106,944 KB
testcase_26 AC 235 ms
178,352 KB
testcase_27 AC 234 ms
178,744 KB
testcase_28 AC 234 ms
178,356 KB
testcase_29 AC 235 ms
178,476 KB
testcase_30 AC 232 ms
178,604 KB
testcase_31 AC 175 ms
122,984 KB
testcase_32 AC 191 ms
123,116 KB
testcase_33 AC 176 ms
151,068 KB
testcase_34 AC 168 ms
156,996 KB
testcase_35 AC 188 ms
186,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = list(map(int, input().split()))
E, O = [], []
for a in A:
    if a % 2:
        O.append(a)
    else:
        E.append(a)
O.sort(reverse=True)
E.sort(reverse=True)
D = defaultdict(int)
now = 1
pre = -1
for od in O:
    if od == pre - 2:
        now += 1
    else:
        now = 1
    D[od - 1] += now
    pre = od
    
now = 1
pre = -1
for ev in E:
    if ev == pre - 2:
        now += 1
    else:
        now = 1
    D[ev - 1] += now
    pre = ev
    
ans = N
for a in A:
    ans += D[a]
print(ans)    
0