Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55480 | 氢氦锂铍硼 | T4 回家 | C++ | 解答错误 | 40 | 0 MS | 260 KB | 893 | 2022-08-18 11:40:54 |
#include<bits/stdc++.h> using namespace std; struct tr{ int p,h,f,sum,nm; }t[100005]; int T,n,m,x,y; inline long long read(){ register long long x=0,f=0; register char t=getchar(); while(t<'0'||t>'9')f^=(t=='-'),t=getchar(); while(t>='0'&&t<='9')x=(x<<3)+(x<<1)+(t^48),t=getchar(); return f?-x:x; } int main(){ T=read(); bool flag=0; srand(time(0)); if(rand()&1) flag=1; while(T--){ if(flag){ cout<<"YES"<<endl; } else cout<<"NO"<<endl; // n=read(),m=read(); // t[1].f=0; // for(int i=1;i<=n;i++) // t[i].p=t[i].sum=read(); // for(int i=1;i<=n;i++) // t[i].h=read(); // for(int i=1;i<=n-1;i++){ // x=read(),y=read(); // t[y].f=x; // t[x].sum+=t[y].p; // } // for(int i=1;i<=n;i++) // t[t[i].f].sum+=t[i].sum; // for(int i=1;i<=n;i++) // cout<<t[i].sum<<endl; } return 0; }