| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 435274 | 任晨熙 | 26年2月-A组(萌新)A. 跑步 | C++ | 通过 | 100 | 1 MS | 240 KB | 174 | 2026-04-04 18:32:27 |
#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; }