結果
| 問題 |
No.735 接線
|
| コンテスト | |
| ユーザー |
akiraarika932
|
| 提出日時 | 2019-02-04 18:56:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 48 ms / 2,000 ms |
| コード長 | 183 bytes |
| コンパイル時間 | 217 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2024-12-25 23:33:43 |
| 合計ジャッジ時間 | 2,612 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
figure = input() figure = figure.split() radius = float(figure[0]) hypotenuse = float(figure[1]) ans = 0 ans = (hypotenuse * hypotenuse - radius * radius) ** 0.5 print(round(ans, 12))
akiraarika932