#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(int i=0;i> T >> S >> D; int s=0; for(i=1;i<=55;i++){ int a=24*i-6,b=24*i+6; int d=min(b*S,T*S+D)-max(a*S,T*S); if(d>=0) s+=d; } double ans=1.0*s/S; cout << fixed << setprecision(15) << ans << endl; return 0; }