比赛 | 20161115 | 评测结果 | WWWWWWWWWW |
---|---|---|---|
题目名称 | 取石块儿 | 最终得分 | 0 |
用户昵称 | KCkwok | 运行时间 | 2.674 s |
代码语言 | C++ | 内存使用 | 0.28 MiB |
提交时间 | 2016-11-15 09:33:51 | ||
#include<cstdio> #include<iostream> #include<cstring> #include<algorithm> using namespace std; typedef unsigned long long ULL; ULL n,k; int main(){ freopen("tstones.in","r",stdin); freopen("tstones.out","w",stdout); int T; cin>>T; while(T--){ cin>>n>>k; if(k>=n)cout<<"NO\n"; else cout<<"YES\n"; } return(0); }