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