結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー cled0328cled0328
提出日時 2024-10-18 22:07:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,569 ms / 6,000 ms
コード長 728 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 204,136 KB
実行使用メモリ 23,220 KB
最終ジャッジ日時 2024-11-15 19:51:03
合計ジャッジ時間 19,536 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
18,856 KB
testcase_01 AC 10 ms
18,888 KB
testcase_02 AC 9 ms
19,000 KB
testcase_03 AC 9 ms
18,840 KB
testcase_04 AC 9 ms
18,896 KB
testcase_05 AC 8 ms
18,936 KB
testcase_06 AC 9 ms
18,904 KB
testcase_07 AC 10 ms
18,792 KB
testcase_08 AC 10 ms
19,008 KB
testcase_09 AC 10 ms
18,924 KB
testcase_10 AC 10 ms
18,936 KB
testcase_11 AC 571 ms
21,904 KB
testcase_12 AC 1,330 ms
23,220 KB
testcase_13 AC 1,326 ms
20,964 KB
testcase_14 AC 617 ms
22,316 KB
testcase_15 AC 447 ms
22,396 KB
testcase_16 AC 1,232 ms
21,088 KB
testcase_17 AC 271 ms
20,204 KB
testcase_18 AC 893 ms
20,248 KB
testcase_19 AC 1,569 ms
22,432 KB
testcase_20 AC 363 ms
21,228 KB
testcase_21 AC 982 ms
22,912 KB
testcase_22 AC 1,047 ms
22,784 KB
testcase_23 AC 554 ms
19,712 KB
testcase_24 AC 9 ms
18,816 KB
testcase_25 AC 10 ms
18,816 KB
testcase_26 AC 1,378 ms
22,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/fenwicktree>
using namespace std;
using namespace atcoder;
int q,l0;
int a[10<<17];
int main(){
    int n;
    cin>>n>>q>>l0;
    bool nf=true;
    fenwick_tree<long long> BIT1(1000001),BIT2(1000001);
    for(int i=0;i<n;i++){
        cin>>a[i];
        BIT1.add(a[i],1);
        BIT2.add(a[i],a[i]);
    }
    while(q--){
        int op;cin>>op;
        if(op==1){
            int l;cin>>l;
            BIT1.add(l,1);
            BIT2.add(l,l);
        }else if(op==2){
            int l,r;cin>>l>>r;
            r++;
            cout<<BIT1.sum(l,r)<<" "<<BIT2.sum(l,r)<<"\n";
            nf=false;
        }else{
            cin>>l0;
        }
    }
    if(nf)cout<<"Not Found!\n";
}
0