結果

問題 No.1385 Simple Geometry 2
ユーザー pockynypockyny
提出日時 2021-02-14 15:32:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 249 ms / 500 ms
コード長 828 bytes
コンパイル時間 1,286 ms
コンパイル使用メモリ 87,348 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-07-22 00:01:09
合計ジャッジ時間 19,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 242 ms
27,264 KB
testcase_14 AC 233 ms
27,520 KB
testcase_15 AC 232 ms
27,392 KB
testcase_16 AC 239 ms
27,392 KB
testcase_17 AC 234 ms
27,264 KB
testcase_18 AC 229 ms
27,264 KB
testcase_19 AC 224 ms
27,376 KB
testcase_20 AC 235 ms
27,264 KB
testcase_21 AC 227 ms
27,264 KB
testcase_22 AC 231 ms
27,280 KB
testcase_23 AC 228 ms
27,392 KB
testcase_24 AC 225 ms
27,392 KB
testcase_25 AC 226 ms
27,264 KB
testcase_26 AC 246 ms
27,332 KB
testcase_27 AC 245 ms
27,392 KB
testcase_28 AC 225 ms
27,264 KB
testcase_29 AC 228 ms
27,264 KB
testcase_30 AC 230 ms
27,284 KB
testcase_31 AC 227 ms
27,264 KB
testcase_32 AC 232 ms
27,264 KB
testcase_33 AC 248 ms
27,340 KB
testcase_34 AC 229 ms
27,264 KB
testcase_35 AC 227 ms
27,520 KB
testcase_36 AC 229 ms
27,520 KB
testcase_37 AC 228 ms
27,264 KB
testcase_38 AC 243 ms
27,264 KB
testcase_39 AC 235 ms
27,324 KB
testcase_40 AC 249 ms
27,136 KB
testcase_41 AC 234 ms
27,520 KB
testcase_42 AC 248 ms
27,436 KB
testcase_43 AC 234 ms
27,260 KB
testcase_44 AC 242 ms
27,264 KB
testcase_45 AC 237 ms
27,264 KB
testcase_46 AC 248 ms
27,312 KB
testcase_47 AC 238 ms
27,392 KB
testcase_48 AC 236 ms
27,136 KB
testcase_49 AC 230 ms
27,300 KB
testcase_50 AC 235 ms
27,292 KB
testcase_51 AC 232 ms
27,520 KB
testcase_52 AC 235 ms
27,304 KB
testcase_53 AC 246 ms
27,312 KB
testcase_54 AC 231 ms
27,264 KB
testcase_55 AC 229 ms
27,264 KB
testcase_56 AC 234 ms
27,272 KB
testcase_57 AC 247 ms
27,428 KB
testcase_58 AC 229 ms
27,300 KB
testcase_59 AC 229 ms
27,520 KB
testcase_60 AC 178 ms
27,268 KB
testcase_61 AC 178 ms
27,264 KB
testcase_62 AC 180 ms
27,520 KB
testcase_63 AC 249 ms
27,520 KB
testcase_64 AC 233 ms
27,264 KB
testcase_65 AC 229 ms
27,264 KB
testcase_66 AC 233 ms
27,264 KB
testcase_67 AC 221 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <iostream>
#include <cmath>
using namespace std;
typedef long double ld;
ld t[500010],pi = acos(-1),si[500010],co[500010];
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.precision(20);
    long long i,n; ld l;
    cin >> n >> l;
    for(i=0;i<n;i++){
        cin >> t[i];
        si[i] = sin(2*pi*t[i]/l); co[i] = cos(2*pi*t[i]/l);
    }
    ld s = 0,c = 0,ans = 0;
    ld ans2 = 0;
    for(i=n - 1;i>=0;i--){
        ans += ld(n + 2*i)*(s*co[i] - c*si[i]);
        s += si[i]; c += co[i];
    }
    s = 0; c = 0;
    for(i=0;i<n;i++){
        ans -= ld(2*i)*(si[i]*c - co[i]*s);
        s += si[i]; c += co[i];
    }
    ans *= 3;
    ans /= ((ld)(n*(n - 1)*(n - 2)));
    cout << ans << endl;
}
0