結果

問題 No.1319 最強とんがりコーン
ユーザー ayaoniayaoni
提出日時 2020-12-16 00:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 674 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-20 03:29:24
合計ジャッジ時間 41,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 441 ms
75,520 KB
testcase_01 AC 448 ms
75,648 KB
testcase_02 AC 642 ms
75,904 KB
testcase_03 AC 674 ms
75,904 KB
testcase_04 AC 477 ms
76,032 KB
testcase_05 AC 643 ms
75,520 KB
testcase_06 AC 648 ms
75,776 KB
testcase_07 AC 650 ms
75,520 KB
testcase_08 AC 634 ms
75,904 KB
testcase_09 AC 611 ms
76,032 KB
testcase_10 AC 633 ms
75,904 KB
testcase_11 AC 653 ms
75,904 KB
testcase_12 AC 630 ms
76,032 KB
testcase_13 AC 640 ms
75,520 KB
testcase_14 AC 651 ms
75,648 KB
testcase_15 AC 649 ms
75,904 KB
testcase_16 AC 663 ms
75,520 KB
testcase_17 AC 603 ms
75,520 KB
testcase_18 AC 659 ms
76,032 KB
testcase_19 AC 586 ms
75,776 KB
testcase_20 AC 463 ms
75,776 KB
testcase_21 AC 464 ms
75,648 KB
testcase_22 AC 455 ms
75,776 KB
testcase_23 AC 447 ms
75,520 KB
testcase_24 AC 444 ms
75,776 KB
testcase_25 AC 454 ms
75,520 KB
testcase_26 AC 451 ms
75,392 KB
testcase_27 AC 441 ms
76,032 KB
testcase_28 AC 439 ms
75,520 KB
testcase_29 AC 438 ms
76,032 KB
testcase_30 AC 436 ms
75,776 KB
testcase_31 AC 446 ms
76,160 KB
testcase_32 AC 633 ms
75,520 KB
testcase_33 AC 530 ms
75,520 KB
testcase_34 AC 435 ms
75,904 KB
testcase_35 AC 449 ms
75,520 KB
testcase_36 AC 449 ms
76,032 KB
testcase_37 AC 454 ms
75,776 KB
testcase_38 AC 433 ms
75,520 KB
testcase_39 AC 473 ms
75,648 KB
testcase_40 AC 641 ms
75,776 KB
testcase_41 AC 651 ms
75,520 KB
testcase_42 AC 655 ms
75,520 KB
testcase_43 AC 658 ms
75,648 KB
testcase_44 AC 654 ms
75,520 KB
testcase_45 AC 641 ms
75,904 KB
testcase_46 AC 633 ms
75,776 KB
testcase_47 AC 657 ms
76,032 KB
testcase_48 AC 640 ms
75,776 KB
testcase_49 AC 648 ms
75,648 KB
testcase_50 AC 662 ms
75,520 KB
testcase_51 AC 656 ms
75,520 KB
testcase_52 AC 653 ms
75,648 KB
testcase_53 AC 645 ms
75,520 KB
testcase_54 AC 656 ms
76,032 KB
testcase_55 AC 651 ms
75,520 KB
testcase_56 AC 643 ms
76,032 KB
testcase_57 AC 639 ms
75,520 KB
testcase_58 AC 645 ms
75,904 KB
testcase_59 AC 643 ms
76,032 KB
testcase_60 AC 275 ms
75,648 KB
testcase_61 AC 284 ms
75,776 KB
testcase_62 AC 270 ms
75,520 KB
testcase_63 AC 269 ms
75,776 KB
testcase_64 AC 635 ms
76,032 KB
testcase_65 AC 619 ms
75,776 KB
testcase_66 AC 269 ms
75,776 KB
testcase_67 AC 426 ms
76,032 KB
testcase_68 AC 614 ms
75,776 KB
testcase_69 AC 436 ms
75,520 KB
testcase_70 AC 658 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import acos,sqrt
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


R,H,D = map(float,S().split())

M = H*(1-D/(2*R))
ans = 0
for i in range(1,10000001):
    h = M*i/10000000
    theta = acos(min(D/(2*R*(1-h/H)),1))
    ans += 2*theta*R**2*(1-h/H)**2-D*sqrt(abs((R*(1-h/H))**2-(D/2)**2))

print(M*ans/10000000)
0