結果

問題 No.1385 Simple Geometry 2
ユーザー MitarushiMitarushi
提出日時 2021-02-03 19:00:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 500 ms
コード長 484 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 148,828 KB
最終ジャッジ日時 2024-07-04 13:02:00
合計ジャッジ時間 15,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,192 KB
testcase_01 AC 36 ms
52,516 KB
testcase_02 AC 36 ms
53,868 KB
testcase_03 AC 37 ms
53,036 KB
testcase_04 AC 38 ms
54,660 KB
testcase_05 AC 37 ms
52,848 KB
testcase_06 AC 38 ms
53,740 KB
testcase_07 AC 38 ms
54,180 KB
testcase_08 AC 47 ms
63,696 KB
testcase_09 AC 49 ms
63,524 KB
testcase_10 AC 52 ms
63,508 KB
testcase_11 AC 49 ms
63,252 KB
testcase_12 AC 49 ms
63,888 KB
testcase_13 AC 191 ms
145,784 KB
testcase_14 AC 185 ms
145,396 KB
testcase_15 AC 190 ms
145,976 KB
testcase_16 AC 192 ms
147,008 KB
testcase_17 AC 189 ms
146,404 KB
testcase_18 AC 187 ms
146,692 KB
testcase_19 AC 184 ms
147,592 KB
testcase_20 AC 187 ms
145,524 KB
testcase_21 AC 186 ms
146,128 KB
testcase_22 AC 183 ms
147,336 KB
testcase_23 AC 186 ms
146,616 KB
testcase_24 AC 182 ms
147,148 KB
testcase_25 AC 183 ms
146,808 KB
testcase_26 AC 185 ms
146,148 KB
testcase_27 AC 186 ms
146,644 KB
testcase_28 AC 184 ms
147,728 KB
testcase_29 AC 185 ms
145,812 KB
testcase_30 AC 187 ms
145,872 KB
testcase_31 AC 185 ms
145,380 KB
testcase_32 AC 187 ms
145,848 KB
testcase_33 AC 188 ms
146,736 KB
testcase_34 AC 189 ms
145,760 KB
testcase_35 AC 189 ms
145,876 KB
testcase_36 AC 185 ms
145,564 KB
testcase_37 AC 183 ms
146,024 KB
testcase_38 AC 184 ms
146,224 KB
testcase_39 AC 189 ms
145,664 KB
testcase_40 AC 187 ms
146,428 KB
testcase_41 AC 187 ms
145,712 KB
testcase_42 AC 185 ms
147,136 KB
testcase_43 AC 187 ms
146,020 KB
testcase_44 AC 188 ms
146,236 KB
testcase_45 AC 187 ms
145,784 KB
testcase_46 AC 184 ms
146,308 KB
testcase_47 AC 188 ms
145,872 KB
testcase_48 AC 189 ms
146,488 KB
testcase_49 AC 186 ms
146,972 KB
testcase_50 AC 186 ms
146,264 KB
testcase_51 AC 185 ms
145,672 KB
testcase_52 AC 189 ms
145,540 KB
testcase_53 AC 187 ms
145,324 KB
testcase_54 AC 189 ms
147,008 KB
testcase_55 AC 185 ms
146,532 KB
testcase_56 AC 186 ms
147,192 KB
testcase_57 AC 190 ms
146,936 KB
testcase_58 AC 188 ms
146,364 KB
testcase_59 AC 176 ms
148,828 KB
testcase_60 AC 181 ms
146,944 KB
testcase_61 AC 179 ms
147,724 KB
testcase_62 AC 179 ms
147,464 KB
testcase_63 AC 189 ms
146,896 KB
testcase_64 AC 190 ms
145,788 KB
testcase_65 AC 186 ms
146,556 KB
testcase_66 AC 187 ms
146,240 KB
testcase_67 AC 187 ms
147,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sin, cos, pi

n, l = map(int, input().split())
r = 2 * pi / l
t = [r * int(i) for i in input().split()]
t_sin = [sin(i) for i in t]
t_cos = [cos(i) for i in t]

a_sin = 0
a_cos = 0
for i in range(n):
    a_sin += t_sin[i] * i
    a_cos += t_cos[i] * i

b_sin = sum(t_sin)
b_cos = sum(t_cos)

ans = 0
for i in range(n):
    ans += t_sin[i] * a_cos - t_cos[i] * a_sin
    a_sin += n * t_sin[i] - b_sin
    a_cos += n * t_cos[i] - b_cos

print(ans * 3 / (n*(n-1)*(n-2)))
0