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