結果

問題 No.764 浮動点
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-27 08:01:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 121 ms / 1,500 ms
コード長 303 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-22 03:22:45
合計ジャッジ時間 4,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,288 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 89 ms
12,544 KB
testcase_04 AC 107 ms
12,160 KB
testcase_05 AC 90 ms
12,416 KB
testcase_06 AC 109 ms
12,416 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 111 ms
12,288 KB
testcase_09 AC 93 ms
12,544 KB
testcase_10 AC 114 ms
12,416 KB
testcase_11 AC 95 ms
12,416 KB
testcase_12 AC 116 ms
12,288 KB
testcase_13 AC 118 ms
12,288 KB
testcase_14 AC 118 ms
12,416 KB
testcase_15 AC 118 ms
12,416 KB
testcase_16 AC 120 ms
12,544 KB
testcase_17 AC 120 ms
12,544 KB
testcase_18 AC 117 ms
12,544 KB
testcase_19 AC 118 ms
12,416 KB
testcase_20 AC 119 ms
12,544 KB
testcase_21 AC 121 ms
12,672 KB
testcase_22 AC 119 ms
12,544 KB
testcase_23 AC 120 ms
12,544 KB
testcase_24 AC 120 ms
12,544 KB
testcase_25 AC 89 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

include Math
n=gets.to_i
l=(0..n+1).map{gets.to_f}
k=l[0]
f=->(r,s){r-s>k ?PI*s*s:s-r>k ?PI*r*r:r+s<k ?0:(x=(k*k+r*r-s*s)/2/k;h=sqrt(r*r-x*x);r*r*atan2(h,x)+s*s*atan2(h,k-x)-k*h)}
1.upto(n){|i|e=l[1..i];b=e.sum;a=[e.max*2-b,0].max;e=l[i+1..n+1];d=e.sum;c=[e.max*2-d,0].max;p f[a,c]-f[a,d]-f[b,c]+f[b,d]}
0