Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112586 | 鲁博睿 | 05买水果 | C++ | Accepted | 0 MS | 260 KB | 252 | 2025-03-09 17:46:00 |
#include<bits/stdc++.h> using namespace std; int main(){ printf("%.3lf\n",(5+8+12)/3.0); printf("%d ",39/5); printf("%d\n",39%5); printf("%d ",39/8); printf("%d\n",39%8); printf("%d ",39/12); printf("%d\n",39%12); return 0; }