Cod sursa(job #2230882)

Utilizator freak93Adrian Budau freak93 Data 12 august 2018 01:30:56
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <iostream>
#include <vector>

using namespace std;

int main() {
    vector<int> V;
    for (int i = 0; i < 100000000; ++i)
        V.push_back(i + -3 * i);
}