Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <vector>
- int main()
- {
- std::vector<char> v(100);
- int res = 0;
- for (int i = 0; i < 100000000; ++i)
- res += v.size();
- printf("%d\n", res);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement