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