#include using namespace std; using ll = long long; using P = pair; #define fix(x) fixed << setprecision(x) #define asc(x) x, vector, greater #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() templatebool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} templatebool chmax(T&a, const T&b){if(a> t >> s >> d; int x = d/s/24; long double y = d; y = min(y/s-x*24+t, 30); x *= 12; y = max(0, y-max(18,t)); cout << fix(16) << x+y << '\n'; return 0; }