| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 80589 | sh25_wangtaojie | 01字串(暴力枚举) | C++ | 通过 | 1 MS | 240 KB | 193 | 2026-01-04 15:23:12 |
#include <iostream> #include <bitset> int main() { for (int i = 0; i < 32; ++i) { std::bitset<5> bits(i); std::cout << bits << std::endl; } return 0; }