結果

問題 No.926 休日の平均
ユーザー miraissan
提出日時 2023-11-30 13:15:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 1,587 ms
コンパイル使用メモリ 165,196 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 13:57:39
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5 WA * 15 RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

using namespace std;
#include <bits/stdc++.h>
#include <iomanip>

int main(){
	int A,B,C;
	cin >> A >> B >> C;
	 int X = A*B;
	 double num = X / C;
	 cout << fixed << setprecision(20) << num << endl;
}
0