3 条题解

  • 1
    @ 2026-1-18 16:59:31

    sbSSBSBSBBBSSBSBSBSBSBSBSBSBSSBSB

    • 0
      @ 2025-12-21 10:42:30

      #include <bits/stdc++.h> using namespace std; int main() { int x,y; cin>>x>>y; if (x >= -1 && x <= 1 && y >= -1 && y <= 1) { cout << "yes"; } else { cout << "no"; }

      return 0;
      

      }

      • 0
        @ 2025-7-27 9:51:24

        核心代码

        ```cpp
            if (x >= -1 && x <= 1 && y >= -1 && y <= 1) {
                cout << "yes";
            } else {
                cout << "no";
            }
        

        AC记录 记录

        • 1

        信息

        ID
        140
        时间
        1000ms
        内存
        128MiB
        难度
        5
        标签
        递交数
        30
        已通过
        15
        上传者