Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
113846 | 黄睿杰 | 13能被13整数的数 | C++ | Accepted | 1 MS | 276 KB | 166 | 2025-03-16 18:25:52 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n,s=0; cin>>m>>n; for(int i=m;i<=n;i++){ if(i%13==0) s+=i; } cout<<s; return 0; }