1 条题解

  • 1
    @ 2025-3-22 16:37:35
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int l,r;
        cin>>l>>r;
        int res=0;
        for(int i=l;i<=r;i++) for(int j=i;j;j=j/10) if(j%10==2) res++;
        cout<<res;
        return 0;
    }
    

    信息

    ID
    945
    时间
    1000ms
    内存
    128MiB
    难度
    9
    标签
    递交数
    10
    已通过
    7
    上传者