結果
問題 | No.3099 夜の道路は気をつけて運転しなければならない |
ユーザー | aguroshou |
提出日時 | 2023-03-31 22:08:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 1,494 ms |
コンパイル使用メモリ | 166,972 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-23 00:49:42 |
合計ジャッジ時間 | 2,012 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #include <iostream> #include <vector> #include <algorithm> #include <iomanip> using namespace std; typedef long long ll; int main() { double t, s, d; cin >> t >> s >> d; double time = d / s; //ll day = time / 24; //double answer = day * 12; //time = fmod(time, 24); double answer = 0; while (true) { if (t >= 24) { t = 0; } if (time>=1) { time--; t += 1.0f; if (t<=6||19<=t) { answer++; } } else { if (t <= 5 || 18 <= t) { answer += time; } break; } } cout << std::setprecision(20) << answer << endl; return 0; }