| Task: | TLE on Train Schedule |
| Sender: | duongha |
| Submission time: | 2025-11-24 16:57:29 +0200 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.01 s | details |
Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll INF = 1e18;
const int MAXN = 1e5;
void solve() {
cout << MAXN << endl;
for (int i = 1; i <= MAXN; i++) cout << 1 << ' ';
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
solve();
return 0;
}