| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55257 | zhangweiran | 【基础题】余数为1 | C++ | Wrong Answer | 0 MS | 236 KB | 185 | 2024-11-03 22:33:55 |
#include<iostream> using namespace std; int main() { int i,result; for(i=0;i<10;i++){ int result=2*3*5*i+1; printf("%d,",result); } return 0; }