結果

問題 No.926 休日の平均
ユーザー takumi152
提出日時 2019-11-22 21:23:36
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 959 ms
コンパイル使用メモリ 85,024 KB
最終ジャッジ日時 2025-01-08 04:34:08
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>
#include <cstdlib>
#include <queue>

using namespace std;

typedef long long int ll;
typedef pair<int, int> Pii;

const ll mod = 1000000007;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);

  double a, b, c;
  cin >> a >> b >> c;

  double ans = a / (b / c);

  cout << setprecision(12) << ans << endl;

  return 0;
}
0