Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58371 | 段文昊 | 【入门】百钱百鸡问题 | C++ | Accepted | 3 MS | 260 KB | 213 | 2023-09-24 16:15:48 |
#include<iostream> #include<cstdio> using namespace std; int main(){ cout<<"4"<<' '<<"18"<<' '<<"78"<<endl; cout<<"8"<<' '<<"11"<<' '<<"81"<<endl; cout<<"12"<<' '<<"4"<<' '<<"84"<<endl; return 0; }