Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
82634 sh25_shenpy 钱币兑换1 C++ 无测评数据 0 MS 0 KB 206 2026-01-16 18:10:50

Tests(0/0):


#include<iostream> using namespace std; int main(){ int s=0; for(int a=0;a<=20;++a){ for(int b=0;b<=(100-5*a)/2;++b){ ++s; } } cout<<s; return 0; }