Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
312882 朱宸宇 【C1-8】线段包含 C++ 通过 100 1 MS 244 KB 196 2025-03-15 19:45:21

Tests(3/3):


#include <iostream> #include <cstdio> using namespace std; bool ff; int main() { int a,b,c,d; cin>>a>>b>>c>>d; if (a<=c && b>=d || c<=a && d>=b) ff=true; cout<<ff; return 0; }


测评信息: