# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
876879 | 2023-11-22T12:54:01 Z | LucaGreg | Pipes (CEOI15_pipes) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; #define int long long int #define ff first #define ss second #define pb push_back int main() { int n, m; cin>>n>>m; for(int i=1;i<=m;i++){ int a, b; cin>>a>>b; } cout<<"0\n"; return 0; }