結果
問題 | No.1487 ぺんぎんさんかっけー |
ユーザー | titia |
提出日時 | 2021-04-23 21:56:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 1,000 ms |
コード長 | 144 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-04 07:58:05 |
合計ジャッジ時間 | 2,331 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 37 |
ソースコード
import sys input = sys.stdin.readline from math import sqrt a,b,c=map(int,input().split()) s=(a+b+c)/2 S=sqrt(s*(s-a)*(s-b)*(s-c)) print(S/4)