| Task: | TLE on Entrepreneur |
| Sender: | tjaa |
| Submission time: | 2025-11-24 18:07:13 +0200 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.00 s | details |
Code
#include <bits/stdc++.h>
using namespace std;
int main () {
int n = 3;
int t = 1e9;
int k = 1e5;
cout << n << ' ' << t << '\n';
for(int i = 0; i < n; i++)
cout << " " << k;
cout << '\n';
return 0;
}