|
新壹街校区-老师: 黄路 (陈星宇)
|
7ms |
7.1 MiB |
|
113 Bytes |
2024-1-21 20:15:22 |
|
黄彦熹 (AK-203)
|
8ms |
444 KiB |
C |
103 Bytes |
2023-3-12 18:55:51 |
|
叶哲宇 (yzy)
|
10ms |
7.1 MiB |
|
107 Bytes |
2024-1-22 10:12:33 |
|
JOKER (hhy)
|
12ms |
7.1 MiB |
|
105 Bytes |
2024-1-22 10:11:14 |
|
曾龙兮
|
12ms |
400 KiB |
|
113 Bytes |
2023-4-2 12:10:27 |
|
源著校区-老师:刘扬-张博涵 (张博涵)
|
12ms |
6.8 MiB |
C++11 |
115 Bytes |
2024-8-9 11:56:27 |
|
刘煜轩
|
12ms |
6.9 MiB |
C++20(O2) |
138 Bytes |
2024-8-16 19:52:32 |
|
张宸睿
|
13ms |
6.9 MiB |
C++17 |
129 Bytes |
2024-8-17 19:08:32 |
|
刘老师 (图书管理员)
|
13ms |
384 KiB |
|
141 Bytes |
2023-2-23 17:11:20 |
|
雷诺伊尔 (崔金鹏)
|
13ms |
6.6 MiB |
C++98 |
111 Bytes |
2024-7-13 16:56:37 |
|
没有此人 (akm)
|
13ms |
7.5 MiB |
C++14 |
131 Bytes |
2024-4-27 15:35:20 |
|
My name is Man (钟卓劭)
|
13ms |
6.9 MiB |
C++98 |
101 Bytes |
2024-8-16 19:51:48 |
|
阮 (媚狐不吃道旁李)
|
13ms |
7.2 MiB |
C++98 |
105 Bytes |
2024-4-29 9:35:59 |
|
金沙校区-先珂熠 (九转大肠)
|
13ms |
6.9 MiB |
C++20(O2) |
119 Bytes |
2024-8-16 19:51:51 |
|
JOKER (hhy)
|
13ms |
6.7 MiB |
C++98 |
367 Bytes |
2024-7-18 13:41:49 |
|
游智棋
|
13ms |
6.9 MiB |
C++17 |
118 Bytes |
2024-8-21 15:14:47 |
|
纪承熙 (jcx001)
|
13ms |
6.9 MiB |
C++11 |
120 Bytes |
2024-4-17 18:54:15 |
|
胡澜之 (666hlz666)
|
13ms |
7.2 MiB |
C++11 |
110 Bytes |
2024-5-8 20:12:47 |
|
徐博研
|
13ms |
6.8 MiB |
C++98 |
110 Bytes |
2024-5-22 15:13:41 |
|
古煦涵
|
13ms |
6.9 MiB |
C++98 |
114 Bytes |
2024-6-25 17:12:44 |
|
天天(聂振洺) (icefall)
|
13ms |
6.6 MiB |
C++98(O2) |
113 Bytes |
2024-7-17 16:03:02 |
|
陈梓宇
|
13ms |
7.4 MiB |
C++98 |
116 Bytes |
2024-4-26 20:12:16 |
|
手搓STL stack 双向无环链表 _ 向量 2种实现方式: template <typename Map_Type> class Stack_l /* Stack _ List */ { private: struct Node { Map_Type Node_Data; Node *nextp, *lastp; Node(void) { nextp = 0; lastp = 0; } }; struct List_Data { unsigned int List_Size; Node *headp, *endp; List_Data(void) { List_Size = 0; headp = 0; endp = 0; } }Data; struct Vector_Data { Map_Type *headp, *lastp, *endp; void resize(unsigned int data_size) { Map_Type *newp = new Map_Type[data_size](); endp = newp + data_size - 1; lastp = newp + (data_size > lastp - headp ? lastp - headp : data_size); if (headp) delete[] headp; headp = newp; } Vector_Data(void) { headp = 0; lastp = 0; endp = 0; } }; public: unsigned int size(void) { return Data.List_Size; } Map_Type& top(void) { return Data.endp -> Node_Data; } void* data(void) { return &Data; } bool empty(void) { return !((bool)Data.headp); } Stack_l<Map_Type>& push(Map_Type push_data) { Node *nodep = new Node(); nodep -> lastp = Data.endp; if (!Data.headp) { Data.headp = nodep; Data.endp = nodep; } else Data.endp -> nextp = nodep; Data.endp = nodep; nodep -> Node_Data = push_data; ++Data.List_Size; return *this; } Stack_l<Map_Type>& push(Map_Type& push_data) { Node *nodep = new Node(); nodep -> lastp = Data.endp; if (!Data.headp) { Data.headp = nodep; Data.endp = nodep; } else Data.endp -> nextp = nodep; Data.endp = nodep; nodep -> Node_Data = push_data; ++Data.List_Size; return *this; } Stack_l<Map_Type>& push(Map_Type* push_data) { Node *nodep = new Node(); nodep -> lastp = Data.endp; if (!Data.headp) { Data.headp = nodep; Data.endp = nodep; } else Data.endp -> nextp = nodep; Data.endp = nodep; nodep -> Node_Data = *push_data; ++Data.List_Size; return *this; } Stack_l<Map_Type>& push(const Map_Type* push_data) { Node *nodep = new Node(); nodep -> lastp = Data.endp; if (!Data.headp) { Data.headp = nodep; Data.endp = nodep; } else Data.endp -> nextp = nodep; Data.endp = nodep; nodep -> Node_Data = *(Map_Type*)push_data; ++Data.List_Size; return *this; } Stack_l<Map_Type>& pop(void) { if (Data.headp) { if (Data.List_Size == 1u) { delete Data.headp; Data.List_Size = 0; Data.headp = 0; Data.endp = 0; } else { Data.endp = Data.endp -> lastp; delete Data.endp -> nextp; Data.endp -> nextp = 0; --Data.List_Size; } } return *this; } Stack_l<Map_Type>& clear(void) { while (Data.List_Size) { pop(); } return *this; } Stack_l<Map_Type>(void) { /* NULL */ } Stack_l<Map_Type>(unsigned int data_size, Map_Type map_data) { Data.List_Size = data_size; while (data_size--) { Node *nodep = new Node(); nodep -> Node_Data = map_data; if (Data.headp) { nodep -> lastp = Data.endp; Data.endp -> nextp = nodep; Data.endp = nodep; } else { Data.headp = nodep; Data.endp = nodep; } } } Stack_l<Map_Type>(Stack_l<Map_Type>& map_data) { if (!map_data.empty()) { List_Data *listp = (List_Data*)map_data.data(); Node *nodep = listp -> headp, *newp; for (unsigned int i = 0; i != listp -> List_Size; ++i, nodep = nodep -> nextp) { newp = new Node(); newp -> Node_Data = nodep -> Node_Data; if (Data.headp) { newp -> lastp = Data.endp; Data.endp -> nextp = newp; Data.endp = newp; } else { Data.headp = newp; Data.endp = newp; } } Data.List_Size = listp -> List_Size; } } Stack_l<Map_Type>& operator=(Stack_l<Map_Type>& copy_data) { if (copy_data.empty()) return *this; List_Data *listp = (List_Data*)copy_data.data(); Node *nodep = listp -> headp, *newp; for (unsigned int i = 0; i != listp -> List_Size; ++i, nodep = nodep -> nextp) { newp = new Node(); newp -> Node_Data = nodep -> Node_Data; if (Data.headp) { newp -> lastp = Data.endp; Data.endp -> nextp = newp; Data.endp = newp; } else { Data.headp = newp; Data.endp = newp; } } Data.List_Size = listp -> List_Size; return *this; } bool operator==(Stack_l<Map_Type>& cmp_data) { if (cmp_data.size() != Data.List_Size) return false; else if (cmp_data.empty() && (!Data.List_Size)) return true; Node *nodep1 = Data.headp, *nodep2 = ((List_Data*)cmp_data.data()) ->headp; for (unsigned int i = 0; i != Data.List_Size; ++i, nodep1 = nodep1 -> nextp, nodep2 = nodep2 ->nextp) { if (nodep1 -> Node_Data != nodep2 -> Node_Data) return false; } return true; } bool operator!=(Stack_l<Map_Type>& cmp_data) { if (cmp_data.size() == Data.List_Size) return false; else if (cmp_data.empty() && (!Data.List_Size)) return false; Node *nodep1 = Data.headp, *nodep2 = ((List_Data*)cmp_data.data()) ->headp; for (unsigned int i = 0; i != Data.List_Size; ++i, nodep1 = nodep1 -> nextp, nodep2 = nodep2 ->nextp) { if (nodep1 -> Node_Data != nodep2 -> Node_Data) return true; } return true; } ~Stack_l<Map_Type>(void) { clear(); } }; /* Stack _ List */ template <typename Map_Type> class Stack_v /* Stack _ Vector */ { private: struct Node { Map_Type Node_Data; Node *nextp, *lastp; Node(void) { nextp = 0; lastp = 0; } }; struct List_Data { unsigned int List_Size; Node *headp, *endp; List_Data(void) { List_Size = 0; headp = 0; endp = 0; } }; struct Vector_Data { Map_Type *headp, *lastp, *endp; void resize(unsigned int data_size) { Map_Type *newp = new Map_Type[data_size](); endp = newp + data_size - 1; lastp = newp + (data_size > lastp - headp ? lastp - headp : data_size); if (headp) delete[] headp; headp = newp; } Vector_Data(void) { headp = 0; lastp = 0; endp = 0; } }Data; public: unsigned int size(void) { return Data.lastp - Data.headp; } Map_Type& top(void) { return *(Data.lastp - 1); } void* data(void) { return &Data; } bool full(void) { if (!Data.headp) return true; return Data.endp + 1 == Data.lastp; } bool empty(void) { if (!Data.headp) return true; return Data.headp == Data.lastp; } Stack_v<Map_Type>& push(Map_Type push_data) { if (full()) Data.resize((unsigned int)((Data.lastp - Data.headp) * 1.5) + 1); *Data.lastp = push_data; ++Data.lastp; return *this; } Stack_v<Map_Type>& push(Map_Type& push_data) { if (full()) Data.resize((unsigned int)((Data.lastp - Data.headp) * 1.5) + 1); *Data.lastp = push_data; ++Data.lastp; return *this; } Stack_v<Map_Type>& push(Map_Type* push_data) { if (full()) Data.resize((unsigned int)((Data.lastp - Data.headp) * 1.5) + 1); *Data.lastp = *push_data; ++Data.lastp; return *this; } Stack_v<Map_Type>& push(const Map_Type* push_data) { if (full()) Data.resize((unsigned int)((Data.lastp - Data.headp) * 1.5) + 1); *Data.lastp = *(Map_Type*)push_data; ++Data.lastp; return *this; } Stack_v<Map_Type>& pop(void) { if (empty()) { if (Data.lastp - Data.headp > 1) Data.resize((Data.lastp - Data.headp) >> 1); else return *this; } else --Data.lastp; return *this; } Stack_v<Map_Type>(void) { /* NULL */ } Stack_v<Map_Type>(unsigned int data_size, Map_Type map_data) { while (data_size) { push(&map_data); --data_size; } } Stack_v<Map_Type>(Stack_v<Map_Type>& map_data) { Vector_Data *datap = (Vector_Data*)map_data.data(); for (unsigned int i = 0, k = map_data.size(); i != k; ++i) push(datap -> headp + i); } Stack_v<Map_Type>& operator=(Stack_v<Map_Type>& copy_data) { if (copy_data.empty()) clear(); else { Vector_Data *datap = (Vector_Data*)copy_data.data(); for (unsigned int i = 0, k = copy_data.size(); i != k; ++i) push(datap -> headp + i); } return *this; } bool operator==(Stack_v<Map_Type>& cmp_data) { if (size() != cmp_data.size()) return false; else if (empty() && cmp_data.empty()) return true; Vector_Data *datap = (Vector_Data*)cmp_data.data(); for (unsigned int i = 0, k = size(); i != k; ++i) { if (*(Data.headp + i) != *(datap ->headp + i)) return false; } return true; } bool operator!=(Stack_v<Map_Type>& cmp_data) { if (size() != cmp_data.size()) return true; else if (empty() && cmp_data.empty()) return false; Vector_Data *datap = (Vector_Data*)cmp_data.data(); for (unsigned int i = 0, k = size(); i != k; ++i) { if (*(Data.headp + i) != *(datap -> headp + i)) return true; } return false; } Stack_v<Map_Type>& clear(void) { delete[] Data.headp; Data.headp = 0; Data.lastp = 0; Data.endp = 0; return *this; } ~Stack_v<Map_Type>(void) { delete[] Data.headp; } }; /* Stack _ Vector */ int main(void) { return 0; } (22029-xys)
|
13ms |
6.8 MiB |
|
286 Bytes |
2023-10-23 21:57:12 |
|
孔妘蘂
|
13ms |
6.9 MiB |
C++11 |
256 Bytes |
2024-8-22 16:27:07 |
|
没有此人 (akm)
|
13ms |
7.5 MiB |
C++14 |
131 Bytes |
2024-4-27 15:35:47 |
|
时代校区-孔令皓 (konglinghao)
|
13ms |
6.9 MiB |
C++98 |
104 Bytes |
2024-8-16 19:51:28 |
|
叶哲宇 (yzy)
|
13ms |
7 MiB |
C++11 |
120 Bytes |
2024-5-26 21:39:56 |
|
cainuoyan
|
13ms |
7 MiB |
C++98 |
101 Bytes |
2024-6-16 20:27:18 |
|
金沙校区-王俊元 (王俊元)
|
13ms |
6.9 MiB |
C++20 |
114 Bytes |
2024-8-16 19:53:52 |
|
时代一校 - 范子煜 (范子煜)
|
13ms |
6.9 MiB |
C++11 |
127 Bytes |
2024-4-17 18:53:56 |
|
金沙校区-鲍钰森 (鲍钰森)
|
13ms |
6.9 MiB |
C++98 |
118 Bytes |
2024-8-16 19:53:05 |
|
时代二校-陈天成 (鸭缩毛巾)
|
13ms |
7 MiB |
C++20(O2) |
101 Bytes |
2024-6-19 20:26:31 |
|
时代一校-王宥量 (wangyouliang)
|
13ms |
6.9 MiB |
C++98 |
107 Bytes |
2024-4-17 18:55:09 |
|
林正张______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ (姚博文)
|
13ms |
7.2 MiB |
C++98 |
111 Bytes |
2024-5-8 20:02:43 |
|
fengzixuan
|
13ms |
384 KiB |
|
120 Bytes |
2023-2-23 19:10:56 |
|
13911518511
|
13ms |
6.9 MiB |
C++98 |
109 Bytes |
2024-8-17 19:55:30 |
|
任梓豪
|
13ms |
440 KiB |
|
149 Bytes |
2023-2-23 18:17:58 |
|
雷诺伊尔 (崔金鹏)
|
13ms |
6.5 MiB |
C++98 |
111 Bytes |
2024-7-10 14:14:48 |
|
刘蕤箎
|
13ms |
7.1 MiB |
C++11 |
115 Bytes |
2024-4-17 19:19:57 |
|
贾易征
|
13ms |
7.2 MiB |
C++98 |
115 Bytes |
2024-5-8 20:10:56 |
|
xmw318046
|
13ms |
6.9 MiB |
C++98 |
256 Bytes |
2024-5-25 12:20:06 |
|
殷语函
|
13ms |
7 MiB |
C++11 |
118 Bytes |
2024-6-15 9:57:25 |
|
郑尧 (zhengyao)
|
13ms |
6.9 MiB |
C++11 |
108 Bytes |
2024-4-17 18:56:34 |
|
新壹街校区-周士杰 (zsj)
|
13ms |
7 MiB |
C++98 |
105 Bytes |
2024-6-2 17:22:03 |
|
执剑人罗辑 (Jasson)
|
13ms |
6.9 MiB |
C++98(O2) |
112 Bytes |
2024-8-21 19:42:02 |
|
陈子欧
|
13ms |
7 MiB |
C++98 |
114 Bytes |
2024-8-24 13:23:06 |
|
孙烽轶 (sfy)
|
13ms |
7.1 MiB |
C++98 |
111 Bytes |
2024-5-18 14:52:05 |
|
何煜琦
|
13ms |
6.9 MiB |
C++11 |
95 Bytes |
2024-8-22 8:46:49 |
|
严晗予 (yanhanyu)
|
13ms |
7.1 MiB |
C++98(O2) |
119 Bytes |
2024-4-17 20:11:44 |
|
天天(聂振洺) (icefall)
|
13ms |
6.5 MiB |
C++98(O2) |
113 Bytes |
2024-7-16 18:35:25 |
|
时代2校-程俊燃 (chengjunran)
|
13ms |
6.8 MiB |
C++11 |
113 Bytes |
2024-8-9 19:20:26 |
|
刘梦泉
|
13ms |
6.9 MiB |
C++11 |
134 Bytes |
2024-4-17 18:49:43 |
|
_PXY_
|
13ms |
384 KiB |
|
113 Bytes |
2023-2-23 19:09:43 |
|
kql1
|
13ms |
7.1 MiB |
C++98 |
117 Bytes |
2024-5-9 13:51:50 |
|
王瀚毅 (wanghanyi)
|
13ms |
432 KiB |
|
114 Bytes |
2023-3-3 16:46:58 |
|
正常的雪糕
|
13ms |
6.9 MiB |
C++98(O2) |
130 Bytes |
2024-8-17 8:26:55 |
|
56HXuZiHang
|
13ms |
6.8 MiB |
|
112 Bytes |
2023-10-20 18:43:33 |
|
阮 (媚狐不吃道旁李)
|
13ms |
7 MiB |
|
105 Bytes |
2023-10-21 10:14:50 |
|
新壹街+黄路+江宇轩 (江宇轩)
|
13ms |
6.8 MiB |
C++98 |
113 Bytes |
2024-8-6 20:05:41 |
|
时代一校-赵彦博 (zyb)
|
13ms |
436 KiB |
|
115 Bytes |
2023-3-3 16:11:37 |
|
Mr_D
|
13ms |
6.9 MiB |
C++17 |
112 Bytes |
2024-8-17 19:23:04 |
|
邵译漫
|
13ms |
6.9 MiB |
C++98 |
116 Bytes |
2024-8-22 16:02:23 |
|
CK (李弘毅)
|
13ms |
6.8 MiB |
|
138 Bytes |
2023-10-21 14:42:40 |
|
吴卓轩
|
13ms |
512 KiB |
|
123 Bytes |
2023-3-3 18:37:59 |
|
zyp (wangjunling23010)
|
13ms |
6.8 MiB |
|
118 Bytes |
2023-10-26 18:43:21 |
|
邓皓文 (min_element)
|
13ms |
6.8 MiB |
C++11(O2) |
105 Bytes |
2024-5-22 21:48:34 |
|
余彦瑞
|
14ms |
440 KiB |
|
126 Bytes |
2023-3-5 11:51:18 |
|
徐君豪
|
14ms |
6.9 MiB |
C++20 |
125 Bytes |
2024-8-17 18:25:29 |
|
朱老师 (zyp)
|
14ms |
6.8 MiB |
|
129 Bytes |
2023-10-26 18:14:37 |
|
老六在此
|
14ms |
7 MiB |
C++20 |
126 Bytes |
2024-6-26 20:22:49 |
|
新壹街校区-陈琬舒 (空空大师)
|
14ms |
6.7 MiB |
C++98 |
113 Bytes |
2024-7-23 14:17:36 |
|
杨颂恩 (yangsongen)
|
14ms |
6.8 MiB |
C++11(O2) |
117 Bytes |
2024-8-12 13:05:15 |
|
原著校区 巫映秋 (巫映秋1a)
|
14ms |
6.8 MiB |
|
114 Bytes |
2023-10-22 10:58:40 |
|
新壹街-王俊博 (王俊博)
|
14ms |
7 MiB |
C++98 |
120 Bytes |
2024-8-25 10:30:56 |
|
江科毅 (jky)
|
14ms |
6.8 MiB |
C++98 |
107 Bytes |
2024-8-15 18:09:31 |
|
王启仑 (wangqilun23010)
|
14ms |
6.8 MiB |
|
118 Bytes |
2023-10-26 18:46:22 |
|
胡澜之 (666hlz666)
|
14ms |
7.3 MiB |
C++11 |
119 Bytes |
2024-5-10 20:34:52 |
|
张祖名
|
14ms |
6.9 MiB |
C++98 |
126 Bytes |
2024-4-17 18:54:04 |
|
阮 (媚狐不吃道旁李)
|
14ms |
436 KiB |
|
129 Bytes |
2023-3-5 17:12:53 |
|
源著校区-惠予宸 (huiyuchen2)
|
14ms |
384 KiB |
|
116 Bytes |
2023-3-6 22:02:54 |
|
新壹街陈科言 (cky)
|
14ms |
7 MiB |
C++98 |
116 Bytes |
2024-8-25 11:16:47 |
|
jighghjkfkhfdhdfdfdsfsdfsafvmnkbnkbmnlvnmkbvnvb;,.m;,;.;,;kbvlmkbnlmkblnvkmlbnkmlbvkmlbvklmbkmlkblmbnm;,l.,.;,'.,';.[',;.[,kjkoihgfhfgiohifgohifgohiofgihgofhiofgihofgihofgihofgiho;''[;.',m;.',m.;',.;'m,.;';'cv;x'cb'cx;b'cv;b'xc;b'c;b'cvbvc.'bv.//,/vb./vcb./cvbv,c.b,cv.,b.cv,b.vc,bg;hgl;hgl;hg;h;hfg;hl;lf;l;lxc;cln;bvln;vcln;vnl;vbl;vbln;vlv;blnvb;plnp;lplhfljpjh;nlvb;nv;bn;vcvl;nlv;nlv;g;hjhchl;ghfghl;fghl;ltlh;l;hlf;lg;bnlc;;nlv;nbv;nbv;nvb;nlvcnl;xc;blxcb;ll;hg;lhgl;dfl;t;ldy;l;lyl;rewlt493;l;dl;dsflg;lsdlpbpcxobpocvbpopopopreopotpreotertertretert (litingxu)
|
14ms |
512 KiB |
|
132 Bytes |
2023-5-7 15:26:58 |
|
陈风亦 (chenfengyi)
|
14ms |
6.9 MiB |
|
164 Bytes |
2023-10-21 21:16:08 |
|
重庆龙湖源著校区+杨聆暄 (杨聆暄)
|
14ms |
7 MiB |
|
141 Bytes |
2023-10-21 18:12:40 |
|
金沙-文豪 (wenhao)
|
14ms |
7 MiB |
C++98(O2) |
105 Bytes |
2024-8-24 13:56:47 |
|
黄梓桐 (HuangZiTong)
|
14ms |
512 KiB |
|
100 Bytes |
2023-4-9 15:29:38 |
|
周米骐 (zsb)
|
14ms |
6.8 MiB |
|
111 Bytes |
2023-10-19 18:26:17 |
|
金沙校区-孟熙轲 (mengxike)
|
14ms |
6.9 MiB |
C++98 |
113 Bytes |
2024-8-17 18:24:03 |
|
15823239925
|
14ms |
7.3 MiB |
|
125 Bytes |
2024-1-21 14:49:48 |
|
acoi团主 (johnDeng)
|
14ms |
6.8 MiB |
|
105 Bytes |
2023-10-25 19:47:59 |
|
新壹街-李昕宇 (李昕宇)
|
14ms |
7.2 MiB |
C++98 |
116 Bytes |
2024-4-26 17:02:35 |
|
江科毅 (jky)
|
14ms |
6.9 MiB |
|
121 Bytes |
2023-10-28 17:48:53 |
|
zzl
|
14ms |
6.8 MiB |
|
103 Bytes |
2023-10-25 16:52:46 |
|
章愉霖
|
14ms |
6.8 MiB |
|
112 Bytes |
2023-10-21 14:12:26 |
|
11451254188 (22029-mjh)
|
14ms |
6.8 MiB |
|
113 Bytes |
2023-10-26 18:48:02 |
|
新壹街校区-陈琬舒 (空空大师)
|
14ms |
7.1 MiB |
C++98 |
113 Bytes |
2024-5-6 21:50:42 |
|
renqingsen
|
14ms |
7.1 MiB |
C++11 |
126 Bytes |
2024-4-17 19:16:29 |
|
李昀铂 (liyunbo)
|
14ms |
6.8 MiB |
|
128 Bytes |
2023-10-26 20:11:38 |
|
zzzzzzzzz
|
14ms |
6.8 MiB |
|
129 Bytes |
2023-10-26 18:14:16 |
|
我是2b+傻逼 (chenyuxuan)
|
14ms |
6.8 MiB |
|
114 Bytes |
2023-10-14 12:42:06 |