| Task: | TLE on Entrepreneur |
| Sender: | Dereden |
| Submission time: | 2025-11-24 16:38:31 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.02 s | details |
Code
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <climits>
typedef long long ll;
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
// freopen("input.txt", "r", stdin); // TODO: REMOVE THIS YOU STUPID ****
int n = 2*1e5;
cout << n << " " << 1000000000 << '\n';
for (int i = 0; i < n; i++) {
cout << 1000000000 << " ";
}
}