結果

問題 No.1319 最強とんがりコーン
ユーザー 👑 KazunKazun
提出日時 2020-12-16 02:16:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 80,560 KB
最終ジャッジ日時 2024-09-20 04:21:50
合計ジャッジ時間 9,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
79,864 KB
testcase_01 AC 109 ms
80,268 KB
testcase_02 AC 108 ms
80,336 KB
testcase_03 AC 111 ms
80,560 KB
testcase_04 AC 110 ms
80,504 KB
testcase_05 AC 109 ms
80,388 KB
testcase_06 AC 108 ms
80,236 KB
testcase_07 AC 109 ms
80,296 KB
testcase_08 AC 109 ms
80,364 KB
testcase_09 AC 106 ms
80,296 KB
testcase_10 AC 105 ms
80,440 KB
testcase_11 AC 106 ms
80,492 KB
testcase_12 AC 106 ms
80,280 KB
testcase_13 AC 106 ms
80,384 KB
testcase_14 AC 105 ms
80,420 KB
testcase_15 AC 107 ms
80,060 KB
testcase_16 AC 106 ms
80,428 KB
testcase_17 AC 108 ms
80,316 KB
testcase_18 AC 107 ms
80,452 KB
testcase_19 AC 107 ms
80,476 KB
testcase_20 AC 105 ms
80,376 KB
testcase_21 AC 105 ms
80,284 KB
testcase_22 AC 107 ms
80,468 KB
testcase_23 AC 106 ms
80,120 KB
testcase_24 AC 103 ms
80,496 KB
testcase_25 AC 108 ms
80,164 KB
testcase_26 AC 105 ms
80,552 KB
testcase_27 AC 105 ms
80,280 KB
testcase_28 AC 106 ms
80,124 KB
testcase_29 AC 106 ms
80,124 KB
testcase_30 AC 108 ms
80,192 KB
testcase_31 AC 108 ms
80,224 KB
testcase_32 AC 106 ms
80,492 KB
testcase_33 AC 107 ms
80,292 KB
testcase_34 AC 106 ms
80,060 KB
testcase_35 AC 106 ms
80,508 KB
testcase_36 AC 105 ms
80,200 KB
testcase_37 AC 107 ms
80,252 KB
testcase_38 AC 109 ms
80,372 KB
testcase_39 AC 108 ms
80,172 KB
testcase_40 AC 107 ms
80,460 KB
testcase_41 AC 108 ms
80,392 KB
testcase_42 AC 119 ms
80,176 KB
testcase_43 AC 108 ms
80,344 KB
testcase_44 AC 106 ms
80,516 KB
testcase_45 AC 109 ms
80,164 KB
testcase_46 AC 108 ms
80,536 KB
testcase_47 AC 108 ms
80,392 KB
testcase_48 AC 110 ms
80,396 KB
testcase_49 AC 109 ms
80,396 KB
testcase_50 AC 110 ms
80,384 KB
testcase_51 AC 107 ms
80,184 KB
testcase_52 AC 104 ms
80,252 KB
testcase_53 AC 106 ms
80,356 KB
testcase_54 AC 108 ms
80,324 KB
testcase_55 AC 107 ms
80,304 KB
testcase_56 AC 109 ms
80,480 KB
testcase_57 AC 108 ms
80,228 KB
testcase_58 AC 109 ms
80,504 KB
testcase_59 AC 111 ms
80,124 KB
testcase_60 AC 111 ms
80,292 KB
testcase_61 AC 110 ms
80,328 KB
testcase_62 AC 111 ms
80,300 KB
testcase_63 AC 110 ms
80,460 KB
testcase_64 AC 110 ms
80,400 KB
testcase_65 AC 109 ms
80,192 KB
testcase_66 AC 111 ms
80,320 KB
testcase_67 AC 108 ms
80,172 KB
testcase_68 AC 107 ms
80,388 KB
testcase_69 AC 109 ms
80,244 KB
testcase_70 AC 110 ms
80,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,log,acos
def F(z):
    K=max(0,4*R*R*z*z-D*D*H*H)
    A=Decimal(sqrt(K))

    V1=-4*D*H*R*z*A

    L=D*H/(2*R*z)
    L=min(Decimal(1),max(Decimal(-1),L))
    V2=8*R**3*z**3*Decimal(acos(L))
    V3=D**3*H**3*(2*Decimal(log(R))+Decimal(log(2*R*z+A)))

    return (V1+V2+V3)/(12*H*H*R)

from decimal import Decimal
R,H,D=map(Decimal,input().split())
print(F(H)-F(D*H/(2*R)))
0