| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 322234 | 丁虞轩 | 【C3-8】兑换硬币 | C++ | Accepted | 100 | 2 MS | 244 KB | 227 | 2025-05-15 21:00:12 |
#include<iostream> using namespace std; int main(){ int s=0; for(int i=1;i<=100/1;i++){ for(int j=1;j<=100/2;j++){ for(int k=1;k<=100/5;k++){ if(i*1+j*2+k*5==100)s+=1; } } } cout<<s; return 0; }