結果
問題 |
No.1381 Simple Geometry 1
|
ユーザー |
![]() |
提出日時 | 2020-12-26 20:38:18 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 231 bytes |
コンパイル時間 | 1,419 ms |
コンパイル使用メモリ | 165,644 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 12:24:58 |
合計ジャッジ時間 | 2,562 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 29 |
ソースコード
//solution 2 #include <bits/stdc++.h> using namespace std; using ll = long long; #define fi first #define se second int main(){ long double x,y,z,w; cin>>x>>y>>z>>w; cout<<fixed<<setprecision(10); cout<<(x-y*z)/2<<endl; }