結果

問題 No.1268 Fruit Rush 2
ユーザー hanyuhanyu
提出日時 2020-09-20 00:19:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 862 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-06-23 22:32:59
合計ジャッジ時間 10,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 33 ms
11,008 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 RE -
testcase_08 WA -
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 RE -
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 30 ms
11,008 KB
testcase_15 RE -
testcase_16 AC 386 ms
26,276 KB
testcase_17 AC 319 ms
24,096 KB
testcase_18 AC 345 ms
24,644 KB
testcase_19 AC 331 ms
24,564 KB
testcase_20 AC 327 ms
24,320 KB
testcase_21 AC 323 ms
24,052 KB
testcase_22 AC 392 ms
26,316 KB
testcase_23 AC 389 ms
26,456 KB
testcase_24 AC 340 ms
24,556 KB
testcase_25 AC 327 ms
24,108 KB
testcase_26 AC 514 ms
32,776 KB
testcase_27 AC 516 ms
32,700 KB
testcase_28 AC 499 ms
32,780 KB
testcase_29 AC 496 ms
32,772 KB
testcase_30 AC 500 ms
32,768 KB
testcase_31 AC 523 ms
29,572 KB
testcase_32 AC 524 ms
29,652 KB
testcase_33 RE -
testcase_34 AC 354 ms
29,652 KB
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

odd = []
even = []
for i in range(n):
    if a[i] % 2 == 1:
        odd.append(a[i])
    else:
        even.append(a[i])

odd = sorted(odd)
even = sorted(even)
odd.append(1e18 - 1)
even.append(1e18)

oddacc = [1] * len(odd)
for i in range(1, len(odd)):
    j = len(odd) - i - 1
    if odd[j] + 2 == odd[j + 1]:
        oddacc[j] += oddacc[j + 1]

evenacc = [1] * len(even)
for i in range(1, len(even)):
    j = len(even) - i - 1
    if even[j] + 2 == even[j + 1]:
        evenacc[j] += evenacc[j + 1]
    
ans = n
it = 0
for i in range(len(odd) - 1):
    while odd[i] >= even[it]:
        it += 1
    if odd[i] + 1 == even[it]:
        ans += evenacc[it]

it = 0
for i in range(len(even) - 1):
    while even[i] >= odd[it]:
        it += 1
    if even[i] + 1 == odd[it]:
        ans += oddacc[it]

print(ans)
0