Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
35162 | teacher_lu | 其他数据类型存储空间大小 | C++ | Accepted | 0 MS | 236 KB | 140 | 2023-12-28 20:33:43 |
#include <bits/stdc++.h> using namespace std; int main() { bool x; char y; cout << sizeof(x) << " " << sizeof(y); return 0; }