結果
問題 | No.1000 Point Add and Array Add |
ユーザー | SDESTINY_kpr |
提出日時 | 2020-02-29 21:24:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 1,418 ms |
コンパイル使用メモリ | 168,588 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-10-13 20:19:20 |
合計ジャッジ時間 | 5,914 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 5 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using P = pair<int,int>; #define rep(i,n) for(int i=0;i<n;i++) const ll mod = ll(1e9) + 7; const int INF = 1<<29; int main(){ ll n,q; cin >> n >> q; vector<ll> a(n),b(n+1,0l); rep(i,n) cin >> a[i]; char c; ll x,y; rep(i,q){ cin >> c >> x >> y; if (c-'A'){ for (int j=x;j<=y;j++) b[j] += a[j-1]; } else a[x-1] += y; } for (int i=1;i<=n;i++) printf("%ld ",b[i]); cout << endl; return 0; }