questions that have no specific number of input tests on ACM -
questions that have no specific number of input tests on ACM - i'm trying submission on baskets of gold coins problem on acm-icpc live archive (https://icpcarchive.ecs.baylor.edu) number of problem 3576 i've written code , gave right reply when tried submit on website online justice didn't take (time limit exceeded error) thing it's not possible programme take more 3 minuets it's simple programme question didn't how many time must input had utilize loop don't know when end code wrote class="snippet-code-css lang-css prettyprint-override"> #include <stdio.h> int n,w,d,weight; int search(); int main(){ scanf("%d %d %d %d",&n,&w,&d,&weight); while((n>1 && n<=8000) && (0<w && w<=30) && (d<w)){ printf("%d\n",search()); scanf("%d %d %d %d",&n,&w,&d,&weight); } return 0; } int search(){ int n=n...