結果
問題 | No.926 休日の平均 |
ユーザー |
|
提出日時 | 2021-12-02 23:28:22 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 349 bytes |
コンパイル時間 | 4,081 ms |
コンパイル使用メモリ | 249,412 KB |
最終ジャッジ日時 | 2025-01-26 02:52:58 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include <bits/stdc++.h>using namespace std;#include <atcoder/all>using namespace atcoder;#define ll long long#define rep(i, n) for (int i = 0; i < (n); i++)#define P pair<int, int>#define LP pair<ll, ll>int main() {double a, b, c;cin >> a >> b >> c;double ans = a*(c/b);cout << fixed << setprecision(10) << ans << endl;}