Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58644 | wangwei | 换零钱 [1*] | C++ | 通过 | 0 MS | 244 KB | 325 | 2024-12-13 19:47:17 |
#include<bits/stdc++.h> using namespace std; int main() { int cnt = 0; for(int x = 1; x <= 19; x ++) for(int y = 1; y <= 94; y ++) for(int z = 1; z < 100; z ++) if(x+y+z == 100 && 5*x+y+0.5*z==100) cnt ++; cout<<cnt; return 0; }