結果

問題 No.8099 夜の道路は気をつけて運転しなければならない
ユーザー gyozasukisuki
提出日時 2023-03-31 22:47:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 1,184 ms
コンパイル使用メモリ 168,128 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 15:25:30
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,l,r) for(int i=(l); i<(r); i++)
#define INF ((1LL<<62)-(1LL<<31)) 
using namespace std;
using ll = long long;
using inv = vector<int>;
using stv = vector<string>;
using GraphI = vector<inv>;
using position = pair<int,int>;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    // double T,S,D; cin >> T >> S >> D;
    // double endtime = T+D/S;
    // double fet = floor(endtime);

    // double ans = 0;
    // for(int i=(int)T; i<(int)fet; i++){
    //     int d = i % 25;
    //     if(d >= 18 || d <= 6) ans += 1;
    // }

    // if((int)fet%25 >= 18 || (int)fet%25 < 6){
    //     ans += ((T+D/S)-fet);
    // }

    // cout <<setprecision(10) << ans << endl;
    double T,S,D;cin >> T >> S >> D;

    cout << setprecision(20) << D/S << endl;    



}
0