Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55103 | 氢氦锂铍硼 | 网络流 (flow) | C++ | 解答错误 | 20 | 18 MS | 256 KB | 250 | 2022-08-09 11:30:50 |
#include <bits/stdc++.h> using namespace std; int main() { srand(time(0)); int n,m; cin>>n>>m; cout<<"-1"<<endl; while(n--) { if(rand()%2) cout<<'1'; else cout<<'0'; } cout<<endl; return 0; }