| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149269 | 徐文雅 | 还差几天到2020年? | C++ | Accepted | 0 MS | 276 KB | 209 | 2026-03-08 15:56:34 |
#include<iostream> using namespace std; int main(){ int a[13]={0,31,28,31,30,31,30,31,31,30,31,30,31},m,d; cin>>m>>d; for(int i=m-1;i>0;i--) d+=a[i]; cout<<366-d<<endl; return 0; }