結果

問題 No.926 休日の平均
ユーザー nao109nao109
提出日時 2021-05-23 01:11:27
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 157,480 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 01:28:52
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    double a,b,c;
    cin >> a >> b >> c;
    double ans = a*c/b;
    cout << ans << endl;
}
0