結果

問題 No.1705 Mode of long array
ユーザー tailstails
提出日時 2021-10-09 12:37:57
言語 cLay
(20240714-1)
結果
AC  
実行時間 27 ms / 3,000 ms
コード長 288 bytes
コンパイル時間 4,454 ms
コンパイル使用メモリ 177,992 KB
実行使用メモリ 8,900 KB
最終ジャッジ日時 2024-09-13 01:22:04
合計ジャッジ時間 7,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 13 ms
6,944 KB
testcase_14 AC 10 ms
8,264 KB
testcase_15 AC 8 ms
6,944 KB
testcase_16 AC 10 ms
6,944 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 11 ms
6,940 KB
testcase_20 AC 8 ms
6,944 KB
testcase_21 AC 11 ms
6,940 KB
testcase_22 AC 15 ms
8,316 KB
testcase_23 AC 8 ms
6,944 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 8 ms
6,940 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 7 ms
6,940 KB
testcase_28 AC 7 ms
6,944 KB
testcase_29 AC 7 ms
6,940 KB
testcase_30 AC 7 ms
6,944 KB
testcase_31 AC 8 ms
6,940 KB
testcase_32 AC 7 ms
6,940 KB
testcase_33 AC 21 ms
7,352 KB
testcase_34 AC 21 ms
6,940 KB
testcase_35 AC 20 ms
8,900 KB
testcase_36 AC 22 ms
6,940 KB
testcase_37 AC 21 ms
8,208 KB
testcase_38 AC 21 ms
7,616 KB
testcase_39 AC 19 ms
8,192 KB
testcase_40 AC 19 ms
6,940 KB
testcase_41 AC 22 ms
6,944 KB
testcase_42 AC 20 ms
8,000 KB
testcase_43 AC 18 ms
7,876 KB
testcase_44 AC 17 ms
8,708 KB
testcase_45 AC 17 ms
7,424 KB
testcase_46 AC 18 ms
7,296 KB
testcase_47 AC 17 ms
7,748 KB
testcase_48 AC 17 ms
7,296 KB
testcase_49 AC 27 ms
7,484 KB
testcase_50 AC 27 ms
8,032 KB
testcase_51 AC 27 ms
8,216 KB
testcase_52 AC 27 ms
7,380 KB
testcase_53 AC 27 ms
8,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

LHeap<__uint128_t>h;
ll@n,@m;
h.walloc(m,1);
rep(i,m){
	ll@a;
	h.change(i,~(__uint128_t(a)<<64|i));
}
ll@q;
rep(q){
	ll@u,@x,@y;
	if(u==1){
		h.change(x-1,h.val[x-1]-(__uint128_t(y)<<64));
	}
	if(u==2){
		h.change(x-1,h.val[x-1]+(__uint128_t(y)<<64));
	}
	if(u==3){
		wt(h.hp[0]+1);
	}
}
0