結果

問題 No.926 休日の平均
ユーザー ruase_
提出日時 2025-08-15 00:49:45
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 1,051 ms
コンパイル使用メモリ 112,520 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-08-15 00:49:48
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <string>
#include <regex>
using namespace std;


int main()
{
    float a, b, c;
    cin >> a >> b >> c;
    float ans;
    ans = (a / b) * c;

    cout << ans << endl;
}
0