結果
問題 | No.926 休日の平均 |
ユーザー |
![]() |
提出日時 | 2019-11-22 21:21:58 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 301 bytes |
コンパイル時間 | 859 ms |
コンパイル使用メモリ | 74,836 KB |
最終ジャッジ日時 | 2025-01-08 04:33:19 |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include <iostream> #include <vector> #include <iomanip> using namespace std; using ll = long long; template<class T> using vec = vector<T>; template<class T> using vvec = vector<vec<T>>; int main(){ int A,B,C; cin >> A >> B >> C; cout << fixed << setprecision(10) << 1.0*A*C/B << endl; }