結果

問題 No.735 接線
ユーザー pawn0818pawn0818
提出日時 2018-09-28 21:34:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-12 05:40:45
合計ジャッジ時間 1,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
# !/usr/bin/env python
# vim: set fileencoding=utf-8 :

"""
#
# Author:   Noname
# URL:      https://github.com/pettan0818
# License:  MIT License
# Created: 金  9/28 21:30:32 2018

# Usage
#
"""
import math
def get():
    return [float(i) for i in input().split(' ')]

def solve(in_list):
    """
    >>> solve([3.000000,5.000000])
    >>> solve([123.456789,123.456790])
    """
    d = in_list[0]
    r = in_list[1]

    return math.sqrt(r*r-d*d)

if __name__ == '__main__':
    print(solve(get()))
0