Guest User

Untitled

a guest
Mar 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #include"stdio.h"
  2. #include"string.h"
  3. #include"math.h"
  4. #include"stdlib.h"
  5. #include"ctype.h"
  6. #include"limits.h"
  7. #include"time.h"
  8. #include"stdbool.h"
  9. #define ll long long
  10.  
  11. /*
  12. int qualitysort(const void *a, const void *b)
  13. {
  14. if(*(ll *)a > *(ll *)b)
  15. return 1;
  16. if(*(ll *)a < *(ll *)b)
  17. return -1;
  18. return 0;
  19. }
  20. */
  21.  
  22. int main() //for problems with testcases
  23. {
  24. clock_t lnh=clock();
  25. int t,d=1;
  26. scanf("%d",&t);
  27. while(t--)
  28. {
  29. ll n,c=0,i,j;
  30. scanf("%lld",&n);
  31.  
  32. //ll a[n];
  33. //for(i=0;i<n;scanf("%lld",&a[i++]));
  34. //qsort(a,n,sizeof(ll),qualitysort);
  35. //for(i=0;i<n;i++)
  36. printf("Case %d: ",d++);
  37.  
  38. printf("%lld",c);
  39. printf("\n");
  40. }
  41.  
  42. clock_t cls=clock();
  43. //printf("Execution Time: %fms\n",(double)((cls-lnh)*1000)/CLOCKS_PER_SEC);
  44.  
  45. return 0;
  46. }
Add Comment
Please, Sign In to add comment