记录详情

Accepted

foo.cc: In function ‘int main()’:
foo.cc:14:12: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
   14 |     while(i<a->size()&&j<b->size())
      |           ~^~~~~~~~~~
foo.cc:14:25: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
   14 |     while(i<a->size()&&j<b->size())
      |                        ~^~~~~~~~~~
foo.cc:16:12: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
   16 |     while(i<a->size())c->push_back((*a)[i++]);
      |           ~^~~~~~~~~~
foo.cc:17:12: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
   17 |     while(j<b->size())c->push_back((*b)[j++]);
      |           ~^~~~~~~~~~
# 状态 耗时 内存占用
#1 Accepted 2ms 504.0 KiB
#2 Accepted 2ms 504.0 KiB
#3 Accepted 2ms 500.0 KiB
#4 Accepted 2ms 504.0 KiB
#5 Accepted 2ms 504.0 KiB

信息

递交者
类型
递交
题目
P1050 OO11-2 vector<int>中的有序插入
比赛
2024级《面向对象的方法与实践》第五次作业
语言
C++
递交时间
2025-05-10 14:02:00
评测时间
2025-05-10 14:02:00
评测机
分数
100
总耗时
12ms
峰值内存
504.0 KiB