2 条题解

  • 2
    @ 2023-5-25 18:02:56

    输入 aabb,输出 aba-b

    这么难的题,只能用 Python 逝世了。

    a,b=map(int,input().split())
    print(a-b)
    
    • 1
      @ 2024-1-29 18:38:43
      #include<bits/stdc++.h>
      using namespace std;
      int a[100][100];
      int main(){
      int n,x;
      cin >> n >> x;
      cout << n-x << endl;
      //so easy
      }
      
      • 1

      信息

      ID
      3
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      (无)
      递交数
      476
      已通过
      348
      上传者