| Task: | TLE on Entrepreneur |
| Sender: | duongha |
| Submission time: | 2025-11-24 17:18:45 +0200 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.02 s | details |
Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll INF = 1e18;
const int MAXN = 2e5;
const int MAXT = 1e9;
void solve() {
cout << MAXN << ' ' << MAXT << endl;
for (int i = 1; i < MAXN; i++) cout << 1 << ' ';
cout << MAXT;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
solve();
return 0;
}