上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 题目链接 https://pintia.cn/problem-sets/994805046380707840/problems/994805113036587008 https://pintia.cn/problem-sets/994805046380707840/problems/99480510 阅读全文
posted @ 2022-04-20 19:00 爱吃虾滑 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://pintia.cn/problem-sets/994805046380707840/problems/994805107638517760 两种方式 一、从输出的第一行可以发现是去重+排序,显然要用set。(其实不用也可以emm) 把set中的数(也就是题干中的arr数组) 阅读全文
posted @ 2022-04-20 17:35 爱吃虾滑 阅读(30) 评论(0) 推荐(0) 编辑
摘要: %5d:采用右对齐方式,输出宽度为5,若不到5位在右边补零 %-5d:左对齐 %05d:和%5d一样,在左边补零 %.5:和%05一样 阅读全文
posted @ 2022-04-20 09:18 爱吃虾滑 阅读(2168) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://pintia.cn/problem-sets/994805046380707840/problems/994805117167976448 排序+去重=>set (话说题意真的要多看几遍才能看懂。。) 思路:朋友圈人数>1的人可能也帅吧,但是没有帅到要求,放入not_han 阅读全文
posted @ 2022-04-20 09:10 爱吃虾滑 阅读(66) 评论(0) 推荐(0) 编辑
摘要: · 使用 set 容器存储的各个键值对,要求键 key 和值 value 必须相等。基于 set 容器的这种特性,当使用 set 容器存储键值对时,只需要为其提供各键值对中的 value 值(也就是 key 的值)即可。 · set 容器也会默认升序排序(当然也可以手动修改排序规则),只不过 set 阅读全文
posted @ 2022-04-19 21:12 爱吃虾滑 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 题目链接: https://pintia.cn/problem-sets/994805046380707840/problems/994805140211482624 结构体 https://pintia.cn/problem-sets/994805046380707840/problems/994 阅读全文
posted @ 2022-04-19 14:18 爱吃虾滑 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://pintia.cn/problem-sets/994805046380707840/problems/994805143738892288 觉得我这几天应该多做一下关于字符串和进制的题了....... 感觉第12行是一个很巧妙的地方 放AC代码 1 #include<bit 阅读全文
posted @ 2022-04-18 21:21 爱吃虾滑 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://pintia.cn/problem-sets/994805046380707840/problems/994805130426171392 第8、15行给了warning:"comparison of integer expression of different sign 阅读全文
posted @ 2022-04-18 20:42 爱吃虾滑 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://pintia.cn/problem-sets/994805046380707840/problems/994805138600869888 1、因子个数不超过sqrt(n)+1 2、如果n为1或质数,那么只有一个因子。所以用一个变量first来记录连乘的第一个因子,若fir 阅读全文
posted @ 2022-04-18 19:13 爱吃虾滑 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://pintia.cn/problem-sets/994805046380707840/problems/994805145370476544 一上来感觉没大有头绪,一直在找规律,好像很麻烦的样子,后来发现要用到高斯求和公式。即S=n(a1+an)/2 但是做出来之后会发现其实 阅读全文
posted @ 2022-04-18 15:27 爱吃虾滑 阅读(53) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页