| Task: | TLE on Train Schedule |
| Sender: | Aurelien |
| Submission time: | 2025-11-24 16:39:46 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | ACCEPTED |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | details |
Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,a,b) for (ll i = a; i < b; i++)
int main() {
ll n = 100000;
cout << n << endl;
REP(i,0,n) {
cout << (n-i) << " ";
}
cout << endl;
}