結果

問題 No.876 Range Compress Query
ユーザー rkato5680rkato5680
提出日時 2020-08-24 10:17:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 362 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,836 KB
最終ジャッジ日時 2024-11-06 07:56:44
合計ジャッジ時間 14,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,348 KB
testcase_01 AC 616 ms
44,092 KB
testcase_02 AC 520 ms
44,100 KB
testcase_03 AC 599 ms
44,344 KB
testcase_04 AC 521 ms
44,084 KB
testcase_05 AC 528 ms
44,288 KB
testcase_06 AC 536 ms
44,100 KB
testcase_07 AC 655 ms
44,476 KB
testcase_08 AC 672 ms
44,220 KB
testcase_09 AC 680 ms
44,860 KB
testcase_10 AC 617 ms
44,220 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N,Q=map(int,input().split())
*a,=map(int,input().split())
a = np.array([0]+a)

def F(x,y):
    if x == y:
        return 1
    else:
        return G(a[x],a[x+1])+F(x+1,y)

def G(x,y):
    return x != y

for i in range(Q):
    *q, = map(int,input().split())
    if q[0]==1:
        a[q[1]:q[2]+1] += q[3]
    else:
        print(F(q[1],q[2]))
0