Submission details
Task:TLE on Entrepreneur
Sender:tjaa
Submission time:2025-11-24 18:07:13 +0200
Language:C++ (C++20)
Status:READY
Result:
Test results
testverdicttime
#10.00 sdetails

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

Test details

Test 1

Verdict:

input
2

correct output
23 1000000000
1000000000 1000000000 10000000...

user output
3 1000000000
 100000 100000 100000