Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
64733 | laichihao | abc | C++ | Accepted | 0 MS | 176 KB | 221 | 2025-04-25 15:46:28 |
#include <stdio.h> int main(){ for(int a=0; a<6; a++){ for(int b=0; b<8; b++){ for(int c=1; c<7; c+=5){ if(((a+b)*100+(b+c)*10+2*c)==532) printf("%d %d %d\n", a, b, c); }}} return 0; }