結果
| 問題 | No.926 休日の平均 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-11-02 22:53:36 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 365 bytes |
| 記録 | |
| コンパイル時間 | 422 ms |
| コンパイル使用メモリ | 107,184 KB |
| 実行使用メモリ | 9,936 KB |
| 最終ジャッジ日時 | 2026-08-23 04:09:52 |
| 合計ジャッジ時間 | 2,032 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 WA * 17 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <cmath>
#include <climits>
#include <iomanip>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
int main(){
ll a,b,c;
cin >> a >> b >> c;
double res = (double)(a / b) * c;
cout << fixed << setprecision(10) << res << endl;
}