题解 | 计算机内存
计算机内存
https://www.nowcoder.com/practice/004c39e1411f43afb425bd2e7cf1056c
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a;
b = a * 1024 *1024 / 4;
cout << b << endl;
return 0;
}
// 64 位输出请用 printf("%lld")