比赛 | 20250527CSP-S模拟 | 评测结果 | |
---|---|---|---|
题目名称 | 星战 | 最终得分 | 0 |
用户昵称 | zjzhe | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2025-05-27 14:52:09 | ||
#include<bits/stdc++.h> #define int long long using namespace std; const int N=1e5+15; int n,m,q; #undef int int main(){ #define int long long freopen("csp2022_galaxy.in","r",stdin); freopen("csp2022_galaxy.out","w",stdout); cin>>n>>m; for(int i=1;i<=m;i++){ int x,y; cin>>x>>y; } cin>>q; for(int i=1;i<=q;i++)cout<<"NO"<<'\n'; return 0; }