2 条题解

  • 1
    @ 2024-4-30 10:45:25
    #include<bits/stdc++.h>
    using namespace std;
    int main(){ // C++ L15 a+b
        int a,b;
        scanf("%X%X",&a,&b); //以16进制输入整数
        cout<<a+b;
        return 0;
    }
    
    • -1
      @ 2024-5-11 19:47:36

      #include<bits/stdc++.h> using namespace std; int main(){ // C++ L15 a+b int a,b; scanf("%X%X",&a,&b); //以16进制输入整数 cout<<a+b; return 0; }

      • 1

      信息

      ID
      1221
      时间
      1000ms
      内存
      256MiB
      难度
      7
      标签
      (无)
      递交数
      14
      已通过
      13
      上传者