結果
問題 |
No.3151 natural math of inscribed circle
|
ユーザー |
![]() |
提出日時 | 2025-05-20 21:43:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 127 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,352 KB |
最終ジャッジ日時 | 2025-06-20 02:59:39 |
合計ジャッジ時間 | 2,862 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 40 WA * 1 |
ソースコード
A,B,C=map(int, input().split()) cosA=(B**2+C**2-A**2)/(2*B*C) sinA=(1.0-cosA**2)**0.5 area=B*C*sinA/2 R=2*area/(A+B+C) print(R)