| Task: | TLE on Entrepreneur |
| Sender: | Ciphra |
| Submission time: | 2025-11-24 16:38:56 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.02 s | details |
Code
#include <iostream>
const int MAX_MACHINES = 2e5;
const int MAX_CARS = 1e9;
int main(){
std::cout << MAX_MACHINES << " " << MAX_CARS << "\n";
for (int i = 0; i < MAX_MACHINES; ++i){
std::cout << 1 << " ";
}
std::cout << "\n";
}
