10 条题解

  • 1
    @ 2023-12-24 13:26:16

    #include<bits/stdc++.h> using namespace std; int main() { int x,i,j,y; for(x=10;x<100;x++){ i=x%10; j=x/10; y=10*i+j; if(y-x==36){ cout<<x<<endl; } }

    } 无测试节点

    信息

    ID
    47
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    223
    已通过
    94
    上传者