#include using namespace std; using lint = long long; using pint = pair; using plint = pair; struct fast_ios { fast_ios(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_; #define ALL(x) (x).begin(), (x).end() #define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i=i##_begin_;i--) #define REP(i, n) FOR(i,0,n) #define IREP(i, n) IFOR(i,0,n) template void ndarray(vector &vec, int len) { vec.resize(len); } template void ndarray(vector &vec, int len, Args... args) { vec.resize(len); for (auto &v : vec) ndarray(v, args...); } template void ndfill(V &x, const T &val) { x = val; } template void ndfill(vector &vec, const T &val) { for (auto &v : vec) ndfill(v, val); } template bool chmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; } template bool chmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; } template pair operator+(const pair &l, const pair &r) { return make_pair(l.first + r.first, l.second + r.second); } template pair operator-(const pair &l, const pair &r) { return make_pair(l.first - r.first, l.second - r.second); } template vector srtunq(vector vec) { sort(vec.begin(), vec.end()), vec.erase(unique(vec.begin(), vec.end()), vec.end()); return vec; } template istream &operator>>(istream &is, vector &vec) { for (auto &v : vec) is >> v; return is; } template ostream &operator<<(ostream &os, const vector &vec) { os << "["; for (auto v : vec) os << v << ","; os << "]"; return os; } template ostream &operator<<(ostream &os, const deque &vec) { os << "deq["; for (auto v : vec) os << v << ","; os << "]"; return os; } template ostream &operator<<(ostream &os, const set &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const unordered_set &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const multiset &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const unordered_multiset &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const pair &pa) { os << "(" << pa.first << "," << pa.second << ")"; return os; } template ostream &operator<<(ostream &os, const map &mp) { os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const unordered_map &mp) { os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; } #define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl; template struct LazySegTree { int N; int head; vector val; vector dval; VAL I_val; DVAL I_dval; using vv2v = function; using d2d = function; using d2v = function; vv2v merge_val; d2d add_dval; d2v refl_dval; LazySegTree() = default; LazySegTree(const vector &val_init, VAL val_default, DVAL dval_default, vv2v f, d2d dadd, d2v dreflect) : N(val_init.size()), I_val(val_default), I_dval(dval_default), merge_val(f), add_dval(dadd), refl_dval(dreflect) { int N_tmp = 1; while (N_tmp < N) N_tmp <<= 1; val = vector(N_tmp*2, I_val); dval = vector(N_tmp*2, I_dval); head = N_tmp - 1; for (int i=0; i=0; pos--) val[pos] = merge_val(val[pos*2+1], val[pos*2+2]); } void resolve_dval(int pos, int l, int r) { // posで遅延を解消して子孫に押し付ける refl_dval(val[pos], dval[pos]); if (pos < head) { add_dval(dval[pos*2+1], dval[pos]); add_dval(dval[pos*2+2], dval[pos]); } dval[pos] = I_dval; } void update(int begin, int end, DVAL dval_q) { update(begin, end, dval_q, 0, 0, head+1); } void update(int begin, int end, DVAL dval_q, int pos, int l, int r) { // 後でリファクタリング if (begin <= l && r <= end) { // 担当区間全部使う add_dval(dval[pos], dval_q); resolve_dval(pos, l, r); } else if (begin < r && l < end) { // 少なくともどこかで交差 resolve_dval(pos, l, r); update(begin, end, dval_q, pos*2+1, l, (l+r)/2); update(begin, end, dval_q, pos*2+2, (l+r)/2, r); val[pos] = merge_val(val[pos*2+1], val[pos*2+2]); } else resolve_dval(pos, l, r); } VAL getvalue(int begin, int end) { return getvalue(begin, end, 0, 0, head+1); } VAL getvalue(int begin, int end, int pos, int l, int r) { resolve_dval(pos, l, r); if (begin <= l && r <= end) return val[pos]; else if (begin> N; vector

v(N); REP(i, N) { lint a; cin >> a; v[i] = P(a, a * a, 1); } LazySegTree st( v, P(0, 0, 0), lint(0), [](P a, P b) { a.s1 += b.s1, a.s2 += b.s2, a.sz += b.sz; return a; }, [](lint &a, lint b) { a += b; }, [](P &a, lint b) { a.s2 += 2 * a.s1 * b + a.sz * b * b; a.s1 += a.sz * b; }); int Q; cin >> Q; while (Q--) { int q, l, r; cin >> q >> l >> r; l--; if (q == 1) { int x; cin >> x; st.update(l, r, x); } else { cout << st.getvalue(l, r).s2 << '\n'; } } }