結果

問題 No.833 かっこいい電車
ユーザー tailstails
提出日時 2021-12-15 15:06:44
言語 cLay
(20240714-1)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 4,223 ms
コンパイル使用メモリ 180,396 KB
実行使用メモリ 11,076 KB
最終ジャッジ日時 2024-07-23 19:56:16
合計ジャッジ時間 7,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
10,924 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
7,496 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 37 ms
8,900 KB
testcase_11 AC 55 ms
10,440 KB
testcase_12 AC 17 ms
6,944 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 46 ms
9,088 KB
testcase_15 AC 23 ms
8,388 KB
testcase_16 AC 24 ms
10,948 KB
testcase_17 AC 10 ms
6,944 KB
testcase_18 AC 44 ms
7,808 KB
testcase_19 AC 21 ms
7,296 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 29 ms
8,004 KB
testcase_22 AC 38 ms
10,820 KB
testcase_23 AC 24 ms
9,028 KB
testcase_24 AC 36 ms
9,216 KB
testcase_25 AC 39 ms
8,900 KB
testcase_26 AC 26 ms
9,412 KB
testcase_27 AC 32 ms
8,516 KB
testcase_28 AC 19 ms
6,980 KB
testcase_29 AC 26 ms
6,940 KB
testcase_30 AC 41 ms
11,076 KB
testcase_31 AC 21 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

set<ll>s;
fenwick<ll>f;
ll@n,@q;
s.insert(0..n+1);
f.walloc(n+1,1);
f.add((1..n),rd_int());
REP(q){
	ll@q,@x;
	if(q==1) s.erase(x);
	if(q==2) s.insert(x);
	if(q==3) f.add(x,1);
	if(q==4) {auto t=s.lower_bound(x);wt(f.range(*--t+1,*t));}
}
0