fork download
  1. #include <iostream>
  2. #include <vector>
  3. #include <list>
  4. #include <algorithm>
  5. using namespace std;
  6.  
  7. int main() {
  8. // your code goes here
  9. vector<int> vec;
  10. //vec.reserve(10);
  11. fill_n(vec.begin(), 10, 0);
  12. return 0;
  13. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Standard output is empty