| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 82651 | sh25_shenpy | 【基础题】换钞票 | C++ | Wrong Answer | 0 MS | 236 KB | 235 | 2026-01-16 18:59:35 |
#include <iostream> using namespace std; const int s=100; int main() { int g=0; for(int x=1;x<=s;++x){ for(int y=1;y<=s-x;y+=2){ if((100-x-y)%5==0) ++g; } } cout<<g; return 0; }