結果

問題 No.8076 eLepHAnTpAoOM
ユーザー GrayCoderGrayCoder
提出日時 2021-04-01 22:09:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-12-21 06:27:16
合計ジャッジ時間 1,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
from math import pi
from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    H, R = input().split()

    h, r = Decimal(H), Decimal(R)
    s = Decimal("-8.245") + Decimal("6.807") * h + Decimal("7.073") * r * 2 * Decimal(pi)
    print(s)


main()
0