比赛 20241128 评测结果 AWWWWWWWWW
题目名称 有趣的旅行 最终得分 10
用户昵称 黄天乐 运行时间 2.221 s
代码语言 C++ 内存使用 3.30 MiB
提交时间 2024-11-28 11:46:45
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m;
int main(){
    freopen("journey.in","r",stdin);
    freopen("journey.out","w",stdout);
    cin>>n>>m;
    for(int i=1;i<=m;i++){
        int a,b;
        cin>>a>>b;
    }
    cout<<"no"<<endl;
    return 0;
}