Submission #10128

#TimeUsernameProblemLanguageResultExecution timeMemory
10128gs14004Cookie Clicker Alpha (GCJ14_cookie)C++98
19 / 19
16 ms1088 KiB
#include <cstdio> void calc(){ double c,f,x; scanf("%lf %lf %lf",&c,&f,&x); int t = 0; while (1) { if(c / (2 + t * f) + x / (2 + (t+1) * f) >= x / (2+ t * f)){ break; } t++; } double res = 0; for (int i=0; i<t; i++) { res += c / (2 + i * f); } res += x / (2 + t * f); printf("%lf",res); } int main(){ int t,i = 0; scanf("%d",&t); while (t--) { printf("Case #%d: ",++i); calc(); puts(""); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...