結果

問題 No.8076 eLepHAnTpAoOM
ユーザー chacoder1chacoder1
提出日時 2021-04-01 20:55:12
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 1,705 ms
コンパイル使用メモリ 192,596 KB
最終ジャッジ日時 2025-01-20 06:04:41
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<n;i++)
static const double pai=3.14159265358979;
int main(){
  double s,a,b;
  cin>>a>>b;
  
  s = -8.245 + 6.807 * a + 7.073 * b*2*pai;
  cout<<setprecision(18)<<s<<endl;

  return 0;
}
0