Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
333912 小林老师 【C3-7】换钞票 C++ 通过 100 4 MS 236 KB 198 2025-07-16 22:03:31

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ for(int i=1; i<=10; i++){ for(int j=5; j>=1; j--){ if(10*i+20*j==100){ cout<<i<<' '<<j<<endl; } } } return 0; }


测评信息: