Cod sursa(job #3142335)
| Utilizator | Data | 20 iulie 2023 16:50:13 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e8;
int a[maxn];
int main(){
for(int i=0; i < 1e6; ++i){
a[i] = i;
}
a[1e5] = 1e5;
for(int i = maxn-1; i >= maxn - (int)1e6; --i){
a[i] = i;
}
}