結果

問題 No.1099 Range Square Sum
ユーザー SSRSSSRS
提出日時 2020-05-17 13:00:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 612 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 170,108 KB
実行使用メモリ 11,684 KB
最終ジャッジ日時 2024-11-22 16:37:29
合計ジャッジ時間 34,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
10,112 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
9,984 KB
testcase_04 AC 2 ms
10,112 KB
testcase_05 AC 2 ms
10,496 KB
testcase_06 AC 2 ms
9,984 KB
testcase_07 AC 2 ms
10,496 KB
testcase_08 AC 2 ms
9,984 KB
testcase_09 AC 3 ms
10,496 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 AC 4 ms
10,112 KB
testcase_12 AC 4 ms
10,496 KB
testcase_13 AC 4 ms
9,984 KB
testcase_14 AC 4 ms
10,496 KB
testcase_15 AC 4 ms
10,112 KB
testcase_16 AC 4 ms
10,496 KB
testcase_17 AC 3 ms
9,984 KB
testcase_18 AC 3 ms
9,984 KB
testcase_19 AC 4 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  //愚直解
  int N;
  cin >> N;
  vector<long long> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  int Q;
  cin >> Q;
  for (int i = 0; i < Q; i++){
    int t;
    cin >> t;
    if (t == 1){
      int l, r, x;
      cin >> l >> r >> x;
      l--;
      r--;
      for (int j = l; j <= r; j++){
        A[j] += x;
      }
    }
    if (t == 2){
      int l, r;
      cin >> l >> r;
      long long ans = 0;
      l--;
      r--;
      for (int j = l; j <= r; j++){
        ans += A[j] * A[j];
      }
      cout << ans << endl;
    }
  }
}
0