| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78817 | sh25_zhangjiajia | 【入门】百钱百鸡问题 | C++ | Wrong Answer | 1 MS | 244 KB | 257 | 2025-12-28 09:39:11 |
#include <iostream> using namespace std; int main(){ int i,j,k; for(i=0;i<99;i++){ for(j=0;j<99;j++){ for(k=0;k<99;k++){ if(i*15+j*9+k==300 && i+j+k==100) cout<<i<<" "<<j<<" "<<k<<endl; } } } }