結果

問題 No.2028 Even Choice
ユーザー tailstails
提出日時 2022-08-05 21:38:00
言語 cLay
(20240714-1)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 2,661 ms
コンパイル使用メモリ 176,400 KB
実行使用メモリ 8,036 KB
最終ジャッジ日時 2024-09-15 17:55:51
合計ジャッジ時間 3,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
6,888 KB
testcase_01 AC 21 ms
7,996 KB
testcase_02 AC 24 ms
6,892 KB
testcase_03 AC 12 ms
8,036 KB
testcase_04 AC 13 ms
7,784 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 22 ms
6,844 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 15 ms
5,504 KB
testcase_09 AC 15 ms
6,440 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 13 ms
7,556 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 7 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@k,@a[n],z=0,s=0,x;
priority_queue<ll>q;
rrep(i,n-k+1,n){
	x=a[i];
	s+=x;
	q.push(-x);
}
rrep(i,n-k+1){
	x=a[i];
	if(i&1){
		z>?=s+x;
	}
	s+=x;
	q.push(-x);
	x=-q.top(); q.pop();
	s-=x;
}
wt(z);
0