提交时间:2026-01-11 18:45:17
运行 ID: 82372
#include <iostream> using namespace std; const int s=100; int main() { int g=0; for(int x=0;x<=s;++x){ for(int y=0;y<=s-x;y+=2){ if((100-x-y)%5==0) ++g; } } cout<<g; return 0; }