結果
| 問題 | No.735 接線 |
| コンテスト | |
| ユーザー |
akiraarika932
|
| 提出日時 | 2019-02-04 18:56:05 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 27 ms / 2,000 ms |
| コード長 | 183 bytes |
| 記録 | |
| コンパイル時間 | 315 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 52,352 KB |
| 最終ジャッジ日時 | 2026-05-31 16:37:49 |
| 合計ジャッジ時間 | 2,316 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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