Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
52448 | AK2022071311 | 修复符文 | C++ | 解答错误 | 5 | 0 MS | 244 KB | 258 | 2022-07-19 12:13:27 |
#include<cstdio> #include<ctime> #include<bits/stdc++.h> using namespace std; int main(){ srand(time(0)); int t; cin >> t; while(t--){ int x = rand() % 2; if(x) cout << "yes" << endl; else cout << "no" << endl; } return 0; }