fork download
  1. #include <iostream>
  2.  
  3. #define fromeq(x,y,i) for(LL i=x; i<=y; i++)
  4. #define from(x,y,i) for(LL i=x; i<y; i++)
  5. #define rfrom(x,y,i) for(LL i=x; i>=y; i--)
  6. #define D(x) cout << '>' << #x << ':' << x << endl;
  7. #define LL long long int
  8.  
  9. using namespace std;
  10.  
  11. LL C(LL n, LL r) {
  12. LL v=1;
  13. fromeq(n-r+1,n,i) {
  14. v *= i;
  15. }
  16. fromeq(1,r,i) {
  17. v /= i;
  18. }
  19. return v;
  20. }
  21.  
  22. int main() {
  23. ios::sync_with_stdio(false);
  24. LL cnt=0;
  25. from(2,7,i) {
  26. cnt += C(i+9,i);
  27. }
  28. cout<<cnt;
  29. return 0;
  30. }
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
7997