Submission details
Task:TLE on Entrepreneur
Sender:Ciphra
Submission time:2025-11-24 16:38:56 +0200
Language:C++ (C++17)
Status:READY
Result:
Test results
testverdicttime
#10.02 sdetails

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";
}

Test details

Test 1

Verdict:

input
2

correct output
23 1000000000
1000000000 1000000000 10000000...

user output
200000 1000000000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...