题解 | 计算机内存
计算机内存
https://www.nowcoder.com/practice/004c39e1411f43afb425bd2e7cf1056c
#include <bits/stdc++.h>
using namespace std;
int main() {
long long n;
cin >> n;
cout << (n * 1024 * 1024) / 4;
}
计算机内存
https://www.nowcoder.com/practice/004c39e1411f43afb425bd2e7cf1056c
#include <bits/stdc++.h>
using namespace std;
int main() {
long long n;
cin >> n;
cout << (n * 1024 * 1024) / 4;
}
相关推荐