| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 82371 | sh25_shenpy | 兑换硬币 | C++ | 编译错误 | 0 MS | 0 KB | 233 | 2026-01-11 18:45:00 |
#include <cstdio> using namespace std; const int s=100; int main() { int g=0; for(int x=0;x<=s;++x){ for(int y=0;y<=s-x;y+=2){ if((100-x-y)%5==0) ++g; } } cout<<g; return 0; }