提交时间:2022-08-18 11:00:25

运行 ID: 55430

#include <bits/stdc++.h> using namespace std; int main() { srand(time(0)); int t; scanf("%d",&t); while(t--) puts(rand() % 2 ? "YES" : "NO"); return 0; }