結果
問題 |
No.1487 ぺんぎんさんかっけー
|
ユーザー |
|
提出日時 | 2021-10-14 14:16:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 97 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 81,960 KB |
実行使用メモリ | 54,044 KB |
最終ジャッジ日時 | 2024-09-17 16:33:16 |
合計ジャッジ時間 | 2,496 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 37 |
ソースコード
from math import sqrt a,b,c=map(int,input().split()) s=(a+b+c)/2 print(sqrt(s*(s-a)*(s-b)*(s-c)))