| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 326271 | 沈心 | 【C2-5】输出前100个17的倍数 | C++ | Accepted | 100 | 6 MS | 248 KB | 154 | 2025-06-12 16:46:07 |
#include<iostream> using namespace std; int main(){ int m=17; for(int i=1;i<=100;i++){ cout<<m<<endl; m+=17; } return 0; } //Online Judge