Submission details
Task:TLE on Entrepreneur
Sender:duongha
Submission time:2025-11-24 17:18:45 +0200
Language:C++ (C++20)
Status:READY
Result:
Test results
testverdicttime
#10.02 sdetails

Code

#include <bits/stdc++.h>
using namespace std;
 
typedef long long ll; 
const ll INF = 1e18;
const int MAXN = 2e5;
const int MAXT = 1e9;

void solve() {
    cout << MAXN << ' ' << MAXT << endl;
    for (int i = 1; i < MAXN; i++) cout << 1 << ' ';
    cout << MAXT; 
}
 
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
 
    solve();
 
    return 0;
}

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 ...