complete jungol/3521.cpp jungol/4520.cpp qoj/1.cpp

This commit is contained in:
2026-06-26 20:02:25 +09:00
parent 5a14bd0d2d
commit 8c0d172f36
3 changed files with 136 additions and 0 deletions

39
storage/qoj/cpp/1.cpp Normal file
View File

@@ -0,0 +1,39 @@
#include <algorithm>
#include <iostream>
#include <vector>
#define let auto
#define fn auto
#define usize size_t
using namespace std;
fn fastio() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
}
#if 0
fn main() -> int {
fastio();
usize n, s = 0, t;
cin >> n;
for (usize i = 0; i < n; i++) {
cin >> t;
s += t;
}
cout << s << endl;
}
#else
fn main() -> int {
fastio();
usize k = 100'000'008;
usize n;
cin >> n;
for (usize i = 0; i < n; i++) {
cout << k << " ";
}
cout << endl;
}
#endif