Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
334374 黄浙峰老师 【C3-7】换钞票 C++ Accepted 100 1 MS 232 KB 196 2025-07-18 09:59:35

Tests(1/1):


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


Judgement Protocol: