| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330916 | 陈信宇 | 【C1-7】k的倍数 | C++ | Wrong Answer | 0 | 2 MS | 236 KB | 186 | 2025-07-11 11:36:51 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; int s=0; for(int i=b;i<=c;i++){ if(i%2==0){ s++; } } cout<<s; return 0; }