結果
問題 | No.926 休日の平均 |
ユーザー |
![]() |
提出日時 | 2019-11-22 21:54:59 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 267 bytes |
コンパイル時間 | 1,914 ms |
コンパイル使用メモリ | 192,716 KB |
最終ジャッジ日時 | 2025-01-08 04:57:25 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include "bits/stdc++.h"#define in std::cin#define out std::cout#define rep(i,N) for(LL i=0;i<N;++i)typedef long long int LL;int main(){long double A, B, C;in >> A >> B >> C;out << std::fixed << std::setprecision(10);out << C * (A / B) << std::endl;}