結果

問題 No.1487 ぺんぎんさんかっけー
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-04-23 21:32:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 160 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 86,924 KB
実行使用メモリ 72,112 KB
最終ジャッジ日時 2023-09-17 11:48:48
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,780 KB
testcase_01 AC 71 ms
71,532 KB
testcase_02 AC 73 ms
71,892 KB
testcase_03 AC 74 ms
71,544 KB
testcase_04 AC 74 ms
71,668 KB
testcase_05 AC 73 ms
71,536 KB
testcase_06 AC 74 ms
71,540 KB
testcase_07 AC 73 ms
71,976 KB
testcase_08 AC 72 ms
71,804 KB
testcase_09 AC 73 ms
71,528 KB
testcase_10 AC 73 ms
71,668 KB
testcase_11 AC 74 ms
71,644 KB
testcase_12 AC 74 ms
71,628 KB
testcase_13 AC 72 ms
71,360 KB
testcase_14 AC 73 ms
71,480 KB
testcase_15 AC 73 ms
71,668 KB
testcase_16 AC 73 ms
71,648 KB
testcase_17 AC 71 ms
71,636 KB
testcase_18 AC 71 ms
72,112 KB
testcase_19 AC 75 ms
71,936 KB
testcase_20 AC 73 ms
71,328 KB
testcase_21 AC 72 ms
71,720 KB
testcase_22 AC 72 ms
71,792 KB
testcase_23 AC 72 ms
71,892 KB
testcase_24 AC 74 ms
71,792 KB
testcase_25 AC 73 ms
71,888 KB
testcase_26 AC 72 ms
71,808 KB
testcase_27 AC 72 ms
71,268 KB
testcase_28 AC 74 ms
71,692 KB
testcase_29 AC 74 ms
71,528 KB
testcase_30 AC 73 ms
71,328 KB
testcase_31 AC 73 ms
71,928 KB
testcase_32 AC 73 ms
71,732 KB
testcase_33 AC 72 ms
71,636 KB
testcase_34 AC 73 ms
71,896 KB
testcase_35 AC 73 ms
71,804 KB
testcase_36 AC 72 ms
71,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin
import math


A,B,C= map(int,stdin.readline().split())

s = (A + B + C)/2

print ( ((s*(s-A)*(s-B)*(s-C))**0.5)/4 )
0