| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 435272 | 王程之 | 26年2月-A组(萌新)A. 跑步 | C++ | 通过 | 100 | 7 MS | 244 KB | 175 | 2026-04-04 18:30:34 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x>>y; if((y-x)%2==0){ cout<<x+(y-x)/2; }else{ cout<<"IMPOSSIBLE"; } return 0; }