結果

問題 No.1268 Fruit Rush 2
ユーザー sotanishysotanishy
提出日時 2020-10-23 23:16:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 750 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 151,048 KB
最終ジャッジ日時 2024-07-21 13:08:59
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,596 KB
testcase_01 AC 39 ms
53,336 KB
testcase_02 AC 39 ms
52,696 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 38 ms
53,284 KB
testcase_10 RE -
testcase_11 AC 38 ms
54,016 KB
testcase_12 AC 38 ms
52,816 KB
testcase_13 AC 38 ms
53,512 KB
testcase_14 AC 38 ms
52,012 KB
testcase_15 AC 38 ms
53,152 KB
testcase_16 AC 159 ms
108,888 KB
testcase_17 AC 144 ms
104,072 KB
testcase_18 AC 151 ms
104,692 KB
testcase_19 AC 149 ms
104,616 KB
testcase_20 AC 151 ms
104,216 KB
testcase_21 AC 148 ms
103,804 KB
testcase_22 AC 162 ms
108,620 KB
testcase_23 AC 159 ms
108,556 KB
testcase_24 AC 149 ms
105,804 KB
testcase_25 AC 149 ms
104,372 KB
testcase_26 AC 206 ms
141,568 KB
testcase_27 AC 204 ms
141,716 KB
testcase_28 AC 207 ms
141,320 KB
testcase_29 AC 205 ms
141,728 KB
testcase_30 AC 206 ms
141,576 KB
testcase_31 AC 189 ms
117,220 KB
testcase_32 AC 193 ms
120,044 KB
testcase_33 AC 154 ms
147,816 KB
testcase_34 AC 129 ms
118,924 KB
testcase_35 AC 149 ms
151,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
even = []
odd = []
for a in A:
    if a % 2 == 0:
        even.append(a)
    else:
        odd.append(a)
even.sort()
odd.sort()
cnt_even = {even[-1] : 1}
cnt = 1
for i in range(len(even) - 1)[::-1]:
    if even[i+1] == even[i] + 2:
        cnt += 1
    else:
        cnt = 1
    cnt_even[even[i]] = cnt
cnt_odd = {odd[-1] : 1}
cnt = 1
for i in range(len(odd) - 1)[::-1]:
    if odd[i+1] == odd[i] + 2:
        cnt += 1
    else:
        cnt = 1
    cnt_odd[odd[i]] = cnt
ans = N
for a in A:
    if a % 2 == 0:
        if a + 1 in cnt_odd:
            ans += cnt_odd[a + 1]
    else:
        if a + 1 in cnt_even:
            ans += cnt_even[a + 1]
print(ans)
0