Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
110100 邹金行 05买水果 C++ Accepted 0 MS 264 KB 180 2025-02-14 16:01:08

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a=5,b=8,c=12; printf("%.3lf\n%d %d\n%d %d\n%d %d",(a+b+c)*1.0/3,39/a,39%a,39/b,39%b,39/c,39%c); return 0; }