結果

問題 No.1319 最強とんがりコーン
ユーザー 👑 KazunKazun
提出日時 2020-12-22 01:11:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 59,648 KB
最終ジャッジ日時 2024-09-21 13:37:47
合計ジャッジ時間 26,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
59,264 KB
testcase_01 AC 323 ms
59,264 KB
testcase_02 AC 352 ms
59,520 KB
testcase_03 AC 363 ms
59,264 KB
testcase_04 AC 337 ms
59,392 KB
testcase_05 AC 355 ms
59,136 KB
testcase_06 AC 351 ms
59,008 KB
testcase_07 AC 364 ms
59,344 KB
testcase_08 AC 352 ms
59,008 KB
testcase_09 AC 360 ms
59,264 KB
testcase_10 AC 414 ms
58,880 KB
testcase_11 AC 355 ms
59,520 KB
testcase_12 AC 355 ms
59,264 KB
testcase_13 AC 355 ms
59,264 KB
testcase_14 AC 383 ms
59,392 KB
testcase_15 AC 357 ms
59,008 KB
testcase_16 AC 380 ms
58,880 KB
testcase_17 AC 355 ms
59,136 KB
testcase_18 AC 370 ms
59,392 KB
testcase_19 AC 345 ms
59,392 KB
testcase_20 AC 323 ms
59,392 KB
testcase_21 AC 323 ms
59,264 KB
testcase_22 AC 320 ms
59,520 KB
testcase_23 AC 324 ms
59,520 KB
testcase_24 AC 320 ms
59,136 KB
testcase_25 AC 322 ms
59,520 KB
testcase_26 AC 321 ms
59,264 KB
testcase_27 AC 321 ms
59,264 KB
testcase_28 AC 321 ms
59,392 KB
testcase_29 AC 325 ms
59,136 KB
testcase_30 AC 326 ms
59,136 KB
testcase_31 AC 325 ms
58,880 KB
testcase_32 AC 352 ms
59,392 KB
testcase_33 AC 337 ms
59,280 KB
testcase_34 AC 321 ms
59,392 KB
testcase_35 AC 323 ms
59,392 KB
testcase_36 AC 323 ms
59,264 KB
testcase_37 AC 323 ms
59,136 KB
testcase_38 AC 322 ms
59,264 KB
testcase_39 AC 333 ms
59,136 KB
testcase_40 AC 356 ms
59,008 KB
testcase_41 AC 419 ms
59,136 KB
testcase_42 AC 389 ms
59,136 KB
testcase_43 AC 411 ms
59,264 KB
testcase_44 AC 382 ms
59,520 KB
testcase_45 AC 428 ms
59,136 KB
testcase_46 AC 353 ms
59,264 KB
testcase_47 AC 400 ms
59,392 KB
testcase_48 AC 356 ms
59,392 KB
testcase_49 AC 399 ms
59,264 KB
testcase_50 AC 406 ms
58,880 KB
testcase_51 AC 424 ms
59,380 KB
testcase_52 AC 413 ms
59,136 KB
testcase_53 AC 426 ms
59,264 KB
testcase_54 AC 379 ms
59,132 KB
testcase_55 AC 385 ms
59,520 KB
testcase_56 AC 417 ms
59,136 KB
testcase_57 AC 433 ms
59,136 KB
testcase_58 AC 429 ms
59,648 KB
testcase_59 AC 428 ms
59,392 KB
testcase_60 AC 38 ms
51,840 KB
testcase_61 AC 38 ms
52,096 KB
testcase_62 AC 39 ms
52,224 KB
testcase_63 AC 38 ms
52,224 KB
testcase_64 AC 352 ms
59,392 KB
testcase_65 AC 350 ms
59,264 KB
testcase_66 AC 38 ms
51,840 KB
testcase_67 AC 319 ms
59,136 KB
testcase_68 AC 353 ms
59,264 KB
testcase_69 AC 324 ms
59,392 KB
testcase_70 AC 395 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,log,acos
def F():
    z=(D*H)/(2*R)
    delta=(H-z)/(10**7)
    S=0
    while z<H:
        t=max(-1,min(1,D*H/(2*R*z)))
        alpha=4*R*z*acos(t)
        beta=D*H*sqrt(max(4-(D*H/(R*z))**2,0))

        S+=z*(alpha-beta)
        z+=delta
    return R*S/(2*H*H)*delta

R,H,D=map(float,input().split())
print(F())
0