| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132318 | 胡海峰老师 | 13能被13整数的数 | C++ | Wrong Answer | 1 MS | 256 KB | 213 | 2025-10-07 22:10:31 |
#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int tot =0; for(int i=100;i<=200;i++) { if(i%13==0) { tot += i; } } cout<< tot; return 0; }
------Input------
48 562
------Answer-----
12220
------Your output-----
1196