摘要: struct BigInteger { static const int BASE = 100000000; static const int WIDTH = 8; vector<int> s; BigInteger(long long num = 0) { *this = num; } BigIn 阅读全文
posted @ 2024-05-06 17:09 Ke_scholar 阅读(11) 评论(0) 推荐(0) 编辑