Skeleton.cpp 805 B

123456789101112131415161718192021222324252627282930
  1. #include <bits/stdc++.h>
  2. #define fin(i, n) for(int i = 0; i < n; i++)
  3. #define fin2(i, a, b) for(int i = a; i < b; i++)
  4. #define debug(a) cerr << #a << " = " << (a) << endl;
  5. using namespace std;
  6. typedef unsigned int uint;
  7. typedef long long L; // LL
  8. typedef pair<int, int> PII;
  9. typedef vector<PII> VPII;
  10. typedef vector<int> VI;
  11. typedef vector<VI> VVI;
  12. // idem for VL, VVL, VD, VVD
  13. const int INFI = 1000000000;
  14. const L INF = numeric_limits<L>::max()/4;
  15. const double EPS = 1e-8;
  16. void parse() {}
  17. void solve() {}
  18. int main() {
  19. int T;
  20. scanf("%d", &T);
  21. fin2(i, 1, T) {
  22. parse();
  23. printf("Case #%d: ", i);
  24. solve();
  25. printf("\n");
  26. #ifdef DEBUG
  27. fprintf(stderr, "%d/%d = %.2fs (estim:%.2fs)\n", i, T, (double)clock ()/CLOCKS_PER_SEC, ((double)clock()/i*T)/CLOCKS_PER_SEC);
  28. #endif
  29. }
  30. }