1 条题解

  • 0
    @ 2025-4-6 20:24:21
    #include <bits/stdc++.h>
    using namespace std;
    
    int a ,b;
    
    int main()
    {
        cin>>a;
        for(int b = 0; b < 2025;b++)
        {
            //int c = (a & b) +(a | b);
            if((a & b) +(a | b) == 2025)
            {
                cout<<b<<endl;
                return 0;
            }
        }
        cout<<-1<<endl;
    }
    
    • 1

    信息

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