Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
83977 sh25_shenpy 排名 C++ 无测评数据 0 MS 0 KB 285 2026-02-05 07:23:14

Tests(0/0):


#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; }