結果

問題 No.2462 七人カノン
ユーザー tailstails
提出日時 2023-09-08 21:55:51
言語 cLay
(20240714-1)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 5,584 ms
コンパイル使用メモリ 213,352 KB
実行使用メモリ 12,620 KB
最終ジャッジ日時 2024-06-26 14:53:32
合計ジャッジ時間 11,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
7,876 KB
testcase_13 AC 48 ms
10,624 KB
testcase_14 AC 50 ms
12,104 KB
testcase_15 AC 46 ms
11,720 KB
testcase_16 AC 52 ms
12,360 KB
testcase_17 AC 54 ms
12,356 KB
testcase_18 AC 26 ms
6,984 KB
testcase_19 AC 25 ms
6,944 KB
testcase_20 AC 54 ms
11,264 KB
testcase_21 AC 55 ms
12,612 KB
testcase_22 AC 56 ms
12,620 KB
testcase_23 AC 55 ms
11,136 KB
testcase_24 AC 41 ms
9,796 KB
testcase_25 AC 50 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef pair<ll,pair<ll,ll>>P;
ll@n,@q,j=0;
P b[2q];
rep(q){
	ll@i,@s,@t;
	b[j++]={s,{0,i}};
	b[j++]={t,{1,i}};
}
sortA(2q,b);
ll u=0,k=0;
double a=0;
double z[n]{};
rep(j,2q){
	auto p=b[j];
	if(k){
		a+=1.0*(p.first-u)/k;
	}
	if(p.second.first){
		z[p.second.second-1]-=a;
		++k;
	}else{
		z[p.second.second-1]+=a;
		--k;
	}
	u=p.first;
}
wtLn(z(n));
0