Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144840 刘宸宇 07切比雪夫距离 C++ Accepted 0 MS 268 KB 157 2026-01-24 19:10:43

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; cout<<max(abs(c-a),abs(d-b))<<endl; return 0; }