結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
11,008 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 30 ms
11,008 KB
testcase_13 AC 29 ms
11,008 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 29 ms
11,008 KB
testcase_16 AC 364 ms
26,272 KB
testcase_17 AC 306 ms
23,972 KB
testcase_18 AC 314 ms
24,616 KB
testcase_19 AC 323 ms
24,564 KB
testcase_20 AC 315 ms
24,320 KB
testcase_21 AC 310 ms
24,176 KB
testcase_22 AC 384 ms
26,312 KB
testcase_23 AC 377 ms
26,456 KB
testcase_24 AC 322 ms
24,588 KB
testcase_25 AC 329 ms
24,108 KB
testcase_26 AC 499 ms
32,776 KB
testcase_27 AC 483 ms
32,772 KB
testcase_28 AC 497 ms
32,648 KB
testcase_29 AC 482 ms
32,780 KB
testcase_30 AC 478 ms
32,896 KB
testcase_31 AC 515 ms
29,648 KB
testcase_32 AC 502 ms
29,648 KB
testcase_33 AC 419 ms
32,780 KB
testcase_34 AC 346 ms
29,652 KB
testcase_35 AC 373 ms
32,780 KB
権限があれば一括ダウンロードができます

ソースコード

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(2e18 - 1)
even.append(2e18)

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