2 条题解

  • 0
    @ 2025-10-13 14:56:39

    Python:

    mb = int(input())
    print( "%d" % (mb*1024*1024/4))
    
    • 0
      @ 2024-7-25 12:44:05

      参考答案:

      #include<iostream>
      
      using namespace std;
      
      int main()
      {
          int a;
          cin >> a;
      
          cout << a * 1024 * 1024 / 4 << endl;
      
          return 0;
      }
      
      • 1

      信息

      ID
      34
      时间
      1000ms
      内存
      256MiB
      难度
      9
      标签
      递交数
      9
      已通过
      8
      上传者