結果

問題 No.1487 ぺんぎんさんかっけー
ユーザー convexineqconvexineq
提出日時 2021-04-23 21:32:50
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 87 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 87,272 KB
実行使用メモリ 71,872 KB
最終ジャッジ日時 2023-09-17 11:48:43
合計ジャッジ時間 4,535 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,508 KB
testcase_01 AC 71 ms
71,596 KB
testcase_02 AC 72 ms
71,424 KB
testcase_03 AC 72 ms
71,472 KB
testcase_04 AC 73 ms
71,636 KB
testcase_05 AC 72 ms
71,672 KB
testcase_06 AC 73 ms
71,844 KB
testcase_07 AC 74 ms
71,748 KB
testcase_08 AC 72 ms
71,724 KB
testcase_09 AC 74 ms
71,460 KB
testcase_10 AC 74 ms
71,672 KB
testcase_11 AC 73 ms
71,356 KB
testcase_12 AC 73 ms
71,600 KB
testcase_13 AC 71 ms
71,724 KB
testcase_14 AC 72 ms
71,796 KB
testcase_15 AC 72 ms
71,740 KB
testcase_16 AC 73 ms
71,676 KB
testcase_17 AC 72 ms
71,872 KB
testcase_18 AC 73 ms
71,764 KB
testcase_19 AC 72 ms
71,632 KB
testcase_20 AC 74 ms
71,456 KB
testcase_21 AC 73 ms
71,596 KB
testcase_22 AC 73 ms
71,632 KB
testcase_23 AC 75 ms
71,512 KB
testcase_24 AC 75 ms
71,760 KB
testcase_25 AC 73 ms
71,476 KB
testcase_26 AC 73 ms
71,552 KB
testcase_27 AC 75 ms
71,760 KB
testcase_28 AC 74 ms
71,840 KB
testcase_29 AC 73 ms
71,840 KB
testcase_30 AC 75 ms
71,540 KB
testcase_31 AC 74 ms
71,640 KB
testcase_32 AC 73 ms
71,848 KB
testcase_33 AC 72 ms
71,508 KB
testcase_34 AC 73 ms
71,400 KB
testcase_35 AC 74 ms
71,788 KB
testcase_36 AC 74 ms
71,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = map(int,input().split())
S = ((a+b+c)*(a+b-c)*(b+c-a)*(c+a-b))**0.5
print(S/16)
0