結果

問題 No.8099 夜の道路は気をつけて運転しなければならない
ユーザー thglafls
提出日時 2023-11-28 23:23:31
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 192,752 KB
最終ジャッジ日時 2025-02-18 02:20:14
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define LL long long
using namespace std;
int main()
{
    int t, s, d;
    cin >> t >> s >> d;

    cout << fixed << setprecision(12) << (double)d / (double)s << endl;
}
0