제출 #1064638

#제출 시각아이디문제언어결과실행 시간메모리
1064638vjudge1Make them Meet (EGOI24_makethemmeet)C++17
10 / 100
22 ms528 KiB
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int n, m; cin >> n >> m; for (int i = 0; i < m; i++){ int a, b; cin >> a >> b; } if (m == n - 1){ cout << 3 << endl; for (int i = 0; i < n; i++){ cout << 0 << ' '; } cout << endl; cout << 1 << ' ' << 1 << ' '; for (int i = 2; i < n; i++){ cout << 0 << ' '; } cout << endl; for (int i = 0; i < n; i++){ cout << 0 << ' '; } cout << endl; }else{ cout << 20000 - 1 << endl; for (int j = 0; j < 20000 - 1; j++){ for (int i = 0; i < n; i++){ cout << 0 << ' '; } cout << endl; } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...