10 条题解

  • 1
    @ 2024-1-7 17:41:08

    #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; }} return 0; }

    信息

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