| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145892 | 冰块ee | 08判断区间 | C++ | Wrong Answer | 0 MS | 272 KB | 201 | 2026-01-25 19:28:15 |
#include<bits/stdc++.h> using namespace std; int a[5]; int main(){ cin>>a[1]>>a[2]>>a[3]; if(a[1]<=a[3]&&a[2]<<a[3]){ cout<<"yes"; }else{ cout<<"no"; } }
------Input------
30 95 65
------Answer-----
no
------Your output-----
yes