Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
51478 | littletwleve | 小明十年身高 | C++ | 通过 | 0 MS | 248 KB | 222 | 2024-09-21 23:15:56 |
#include <bits/stdc++.h> using namespace std; int a[10]; int main(){ for(int i=0;i<10;i++){ cin>>a[i]; } int year; cin>>year; cout<<a[year%10]<<endl; cout<<a[year%10]-a[year%10-1]; return 0; }