제출 #1338732

#제출 시각아이디문제언어결과실행 시간메모리
1338732athenaMake them Meet (EGOI24_makethemmeet)C++20
큐에 대기중
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
#define int long long int

int32_t main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
   int n,m;
   cin>>n>>m;
   for(int i=0;i<n;i++)
   {
    int x,y;
    cin>>x>>y;
   }
   cout<<1<<endl;
   for(int i=0;i<n;i++)
    cout<<1<<" ";
cout<<endl;

 }