結果

問題 No.1099 Range Square Sum
ユーザー 👑 KazunKazun
提出日時 2020-06-26 21:52:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 766 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 265,324 KB
最終ジャッジ日時 2024-07-04 20:44:06
合計ジャッジ時間 5,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,600 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 97 ms
76,160 KB
testcase_12 AC 97 ms
76,288 KB
testcase_13 AC 97 ms
76,288 KB
testcase_14 AC 98 ms
76,160 KB
testcase_15 AC 95 ms
76,544 KB
testcase_16 AC 89 ms
76,288 KB
testcase_17 AC 90 ms
74,368 KB
testcase_18 AC 98 ms
76,544 KB
testcase_19 AC 95 ms
76,288 KB
testcase_20 AC 97 ms
76,288 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Imos_1:
    def __init__(self,N):
        self.len=N
        self.list=[0]*(N+1)

    def Add(self,F,T,C):
        self.list[F]+=C
        self.list[T+1]-=C

    def Cumulative_Sum(self):
        Y=[0]*(self.len)
        S=0
        for i in range(self.len):
            S+=self.list[i]
            Y[i]=S

        return Y
#----------------------------------------------------------
    
N=int(input())
A=list(map(int,input().split()))
Q=int(input())

S=Imos_1(N)
for i in range(Q):
    K=list(map(int,input().split()))
    if K[0]==1:
        _,l,r,x=K
        S.Add(l-1,r-1,x)
    else:
        _,l,r=K
        T=0
        Y=S.Cumulative_Sum()
        for i in range(l-1,r):
            p=A[i]
            q=Y[i]
            T+=(p+q)*(p+q)
        print(T)
0