| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136040 | 徐向彬 | 统计硬币 | C++ | Wrong Answer | 5 MS | 268 KB | 385 | 2025-11-09 09:44:32 |
#include<iostream> using namespace std; int main(){ int T,n,m,x,y,z; cin>>T; for(int i=1;i<=T;i++){ cin>>n>>m; int num=0; for(x=0;x<=m;x++){ for(y=0;y<=m/2;y++){ z=m-x-y; if(x+y+z==n&&x*1+y*2+z*5==m){ num++; } } } cout<<num<<endl; } }
------Input------
20 5 10 8 20 3 6 2 4 10 26 11 27 1 1 1 2 2 2 1 5 5 25 100 250 1000 3000 26 120 9 30 12 27 7 25 27 54 32 100 4 13
------Answer-----
2 2 1 1 3 3 1 1 1 1 1 21 167 1 2 3 1 7 6 1
------Your output-----
0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0