제출 #783311

#제출 시각아이디문제언어결과실행 시간메모리
783311vh50Newspapers (CEOI21_newspapers)C++17
0 / 100
1 ms212 KiB
#include <bits/stdc++.h> #define int long long #define endl "\n" using namespace std; int n, m; main() { cin >> n >> m; if(m == n - 1) { if(n == 2) cout << "YES" << endl << "1 1" << endl; else cout << "NO" << endl; } }

컴파일 시 표준 에러 (stderr) 메시지

newspapers.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...