记录编号 | 512519 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [USACO Oct08] 奶牛的骰子 | 最终得分 | 100 | ||
用户昵称 | 666666666666 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2018-10-04 17:03:47 | 内存使用 | 0.00 MiB | ||
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int t1,t2,t3,a[1000010]={0},t4=0,t5; int etmn() { freopen("bones.in","r",stdin); freopen("bones.out","w",stdout); scanf("%d%d%d",&t1,&t2,&t3); for(int i=1;i<=t1;++i) for(int j=1;j<=t2;++j) for(int k=1;k<=t3;++k) ++a[i+j+k]; for(int i=1;i<=t1+t2+t3;++i) { if(a[i]>t4) { t4=a[i]; t5=i; } } printf("%d\n",t5); return 0; } int laq=etmn(); int main(){;}