Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132638 张咏灏 闰年的数量 C++ Wrong Answer 1 MS 272 KB 258 2025-10-11 20:35:50

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b; for(int i=1;i<=a-b;i++){ if(a%4==0){ c++; a++; }else{ a++; } } cout<<c; return 0; }


Run Info:

------Input------
685 1586
------Answer-----
218
------Your output-----
4195064