| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 82649 | sh25_shenpy | 【基础题】换钞票 | C++ | 解答错误 | 0 MS | 240 KB | 215 | 2026-01-16 18:57:32 |
#include <bits/stdc++.h> using namespace std; int main( ) { int s=0; for(int i=0;i<=20;++i){ for(int j=0;j<=(100-5*i)/2;++j){ ++s; } } cout<<s; return 0; }