제출 #1267907

#제출 시각아이디문제언어결과실행 시간메모리
1267907kaloyanMaking Friends on Joitter is Fun (JOI20_joitter2)C++20
0 / 100
0 ms320 KiB
#include <bits/stdc++.h>

using namespace std;

int n, m;

void solve()
{
    cin >> n >> m;

    int cnt = 0;

    for(int i = 1 ; i <= m ; ++i)
    {
        int a, b; cin >> a >> b;
        cout << ++cnt << "\n";
    }
}

void fastIO()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
}

int main()
{
    fastIO();
    solve();
    
    return 0;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…