| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 365364 | 李南笙 | 【C3-T】最大值和次大值 | C++ | Wrong Answer | 0 | 2 MS | 248 KB | 285 | 2025-12-05 19:53:48 |
#include<iostream> using namespace std; int main(){ int s=0; for(int i=1;i<=12;i++){ for(int j=1;j<=50;j++){ for(int k=1;k<=25;k++){ if(i*9+j+k==100&&i*2+j*2+k*4==100){ s++; cout<<i<<" "<<j<<" "<<k<<endl; } } } } cout<<s; return 0; }