結果
| 問題 | No.3151 natural math of inscribed circle |
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2025-10-09 21:22:31 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| + 683µs | |
| コード長 | 124 bytes |
| 記録 | |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 96,364 KB |
| 実行使用メモリ | 79,232 KB |
| 最終ジャッジ日時 | 2026-07-15 15:56:20 |
| 合計ジャッジ時間 | 4,988 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 41 |
ソースコード
A, B, C = map(int, input().split()) s = (A + B + C) / 2 S = (s * (s - A) * (s - B) * (s - C)) ** 0.5 ans = S / s print(ans)
ntuda