이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
using pi = pair<int,int>;
#define all(v) v.begin(),v.end()
#define sort(v) sort(all(v))
#define endl '\n'
#define forn(i,n) for(int i = 0; i < n; ++i)
#define forbe(i,b,e) for(int i = b; i < e; ++i)
#define forr(i,n) for(int i = n-1; i >= 0; --i)
#define sz(v) ((int)v.size())
#define pb push_back
#define f first
#define s second
void add_element(std::string x);
bool check_element(std::string x);
void compile_set();
std::vector<int> sub12(int n)
{
string x;
forn(i,n)
x.pb('0');
forn(i,n) {
x[i] = '1';
add_element(x);
}
compile_set();
vector<bool> fnd(n);
vi perm(n);
forn(i,n)
x[i] = '0';
forn(i,n) {
forn(j,n) {
if (fnd[j]) continue;
x[j] = '1';
if (check_element(x)) {
fnd[j] = 1;
perm[i] = j;
continue;
}
x[j] = '0';
}
}
return perm;
}
std::vector<int> restore_permutation(int n, int w, int r) {
if (n == 8) return sub12(n);
else if (n == 32 && r == 1024) return sub12(n);
vi ans;
return ans;
}
#ifdef ONPC
void add_element(std::string x) {}
bool check_element(std::string x) {return 1;}
void compile_set() {}
void solve() {
int n, k, d;
cin >> n;
cout << n << endl;
k = 0;
forn(i,n) {
cin >> d;
cout << d << ' ';
k += d;
}
cout << endl << k << endl;
}
int main() {
// freopen("in", "r", stdin);
// ios_base::sync_with_stdio(0);cin.tie(0);
solve();
}
#endif
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |