1 条题解

  • 1
    @ 2025-10-25 18:02:05
    #include<bits/stdc++.h>
    using namespace std;
    void read(long long &h){
        char o;
        long long x=0,y=1;
        o=getchar_unlocked();
        while(!(o<='9'&&o>='0')){
            if(o=='-'){
                y=-1;
            }
            o=getchar_unlocked();
        }
        while(o<='9'&&o>='0'){
            x*=10;
            x+=o-'0';
            o=getchar_unlocked();
        }
        h=x*y;
        return ;
    }
    long long T,n,k;
    int main(){
        ios::sync_with_stdio(0);cin.tie(nullptr);cout.tie(nullptr);
        read(T);
        while(T--){
            read(n);read(k);
            cout<<(n>=k*(k+1)/2?"Yes\n":"No\n");
        }
        return 0;
    }
    
    
    • 1

    信息

    ID
    5807
    时间
    1000ms
    内存
    512MiB
    难度
    1
    标签
    递交数
    5
    已通过
    3
    上传者