結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー tailstails
提出日時 2024-10-18 21:56:01
言語 cLay
(20240714-1)
結果
AC  
実行時間 189 ms / 6,000 ms
コード長 307 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 174,660 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-11-15 17:59:29
合計ジャッジ時間 10,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 88 ms
8,704 KB
testcase_12 AC 185 ms
8,704 KB
testcase_13 AC 167 ms
8,704 KB
testcase_14 AC 119 ms
8,576 KB
testcase_15 AC 84 ms
8,064 KB
testcase_16 AC 144 ms
8,704 KB
testcase_17 AC 43 ms
8,320 KB
testcase_18 AC 104 ms
8,704 KB
testcase_19 AC 189 ms
8,576 KB
testcase_20 AC 60 ms
8,448 KB
testcase_21 AC 160 ms
7,552 KB
testcase_22 AC 160 ms
7,552 KB
testcase_23 AC 63 ms
8,576 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 178 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fenwick<ll>f,g;
@[f,g].malloc(2d5+1,1);
bool found=false;
ll@n,@q,@l;
rep(n){
	ll@a;
	f.add(a,1);
	g.add(a,a);
}
rep(q){
	ll@t;
	if(t==1){
		ll@l;
		f.add(l,1);
		g.add(l,l);
	}
	if(t==2){
		ll@l,@r;
		wt(f.range(l,r),g.range(l,r));
		found=true;
	}
	if(t==3){
		ll@m;
	}
}
if(!found){
	wt("Not Found!");
}
0