답안 #381591

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
381591 2021-03-25T10:35:32 Z Araragi Pastiri (COI20_pastiri) C++17
0 / 100
106 ms 620 KB
#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimize("00")
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef pair<int, int> pii;
ll time() {return chrono::system_clock().now().time_since_epoch().count();}
mt19937 rnd(time());
const int inf = 1e9;
const ll inf64 = 1e18;
#define ft first
#define fin(x) ifstream cin("x.in");
#define fout(x) ofstream cout("x.out");
#define sd second
#define pb push_back
#define sz(x) (int)x.size()

int x[500001];

void solve()
{
    vector<int> ve;

    int n, k;
    cin >> n >> k;
    for (int i = 1; i < n; i++)
    {
        int x, y;
        cin >> x >> y;
    }

    for (int i = 1; i <= k; i++)
        cin >> x[i];

    for (int i = 1; i <= k; i++)
        ve.pb(x[i] - 1);

    cout << sz(ve) << '\n';
    for (auto it : ve)
        cout << it << " ";
}

int main()
{
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    #ifdef _LOCAL_
        system("color 2");
    #endif // _LOCAL_

    int t = 1;

    while (t--)
        solve();

}
# 결과 실행 시간 메모리 Grader output
1 Correct 106 ms 492 KB Output is correct
2 Incorrect 90 ms 492 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 364 KB Sheep 857 not protected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Sheep 12 not protected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 94 ms 620 KB Sheep 54 not protected
2 Halted 0 ms 0 KB -