| Task: | TLE on Entrepreneur |
| Sender: | tjaa |
| Submission time: | 2025-11-24 16:35:27 +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;
int n = 2e5;
int t = 1e9;
int main () {
cout << n << ' ' << t << '\n';
while (n--) {
cout << '1' << ' ';
}
cout << '\n';
return 0;
}