답안 #956934

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
956934 2024-04-02T17:29:57 Z LucaIlie Newspapers (CEOI21_newspapers) C++17
0 / 100
1 ms 344 KB
#include <bits/stdc++.h>

using namespace std;

const int MAX_N = 1e3;
vector<int> adj[MAX_N + 1];

int main() {
    int n, m;
    
    cin >> n >> m;
    for ( int i = 0; i < m; i++ ) {
        int u, v;
        cin >> u >> v;
    }

    if ( m == n - 1 )
        cout << "YES\n";
    else
        cout << "NO\n";

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -