网站首页 站内搜索

搜索结果

查询Tags标签: 25,共有 595条记录
  • 1059 Prime Factors (25 分)

    题目链接:https://pintia.cn/problem-sets/994805342720868352/problems/994805415005503488#include<bits/stdc++.h> using namespace std; #define ll long long const int maxn=1e6+100; ll prime[maxn]; int num=0; int p[maxn]; void isprime() {for(int i=2;…

    2021/9/18 6:10:02 人评论 次浏览
  • 1085 PAT单位排行 (25 point(s)) (测试点五)

    写的时候不知道怎么将字符串都转换成小写了,就弄了个循环一个个将大写转换成小写。 参考了其他文章,学到了 transform() 函数,搭配 toupper 和 tolower 就可以转换成大写或者小写。 transform(begin(sname), end(sname), begin(sname), ::tolower); 第一个第二个参数是…

    2021/9/17 23:34:48 人评论 次浏览
  • 1085 PAT单位排行 (25 point(s)) (测试点五)

    写的时候不知道怎么将字符串都转换成小写了,就弄了个循环一个个将大写转换成小写。 参考了其他文章,学到了 transform() 函数,搭配 toupper 和 tolower 就可以转换成大写或者小写。 transform(begin(sname), end(sname), begin(sname), ::tolower); 第一个第二个参数是…

    2021/9/17 23:34:48 人评论 次浏览
  • 阳光智博改嫁给万物云:终止独立IPO计划,阳光城获利25亿元

    没等来上市聆讯,阳光智博转而“改嫁”给万物云。 9月15日,阳光城(SZ:000671)发布公告,称公司及子公司阳光智博各股东拟以其持有的阳光智博100%股权战略投资万物云,换取万物云4.8%的股份,各股东按照各自持股比例换股。阳光城表示,该公司后续拟投资增持万物云,将持…

    2021/9/15 23:07:16 人评论 次浏览
  • 阳光智博改嫁给万物云:终止独立IPO计划,阳光城获利25亿元

    没等来上市聆讯,阳光智博转而“改嫁”给万物云。 9月15日,阳光城(SZ:000671)发布公告,称公司及子公司阳光智博各股东拟以其持有的阳光智博100%股权战略投资万物云,换取万物云4.8%的股份,各股东按照各自持股比例换股。阳光城表示,该公司后续拟投资增持万物云,将持…

    2021/9/15 23:07:16 人评论 次浏览
  • 【PAT】乙级 1030 完美数列 (25 分) c++

    1030 完美数列 (25 分) 给定一个正整数数列,和正整数 p,设这个数列中的最大值是 M,最小值是 m,如果 M≤mp,则称这个数列是完美数列。 现在给定参数 p 和一些正整数,请你从中选择尽可能多的数构成一个完美数列。 输入格式: 输入第一行给出两个正整数 N 和 p,其中 N…

    2021/9/15 11:04:50 人评论 次浏览
  • 【PAT】乙级 1030 完美数列 (25 分) c++

    1030 完美数列 (25 分) 给定一个正整数数列,和正整数 p,设这个数列中的最大值是 M,最小值是 m,如果 M≤mp,则称这个数列是完美数列。 现在给定参数 p 和一些正整数,请你从中选择尽可能多的数构成一个完美数列。 输入格式: 输入第一行给出两个正整数 N 和 p,其中 N…

    2021/9/15 11:04:50 人评论 次浏览
  • 1063 Set Similarity (25 分)

    Given two sets of integers, the similarity of the sets is defined to beNc/Nt100N_c/N_t100Nc​/Nt​100​%, whereNcN_cNc​​​ is the number of distinct common numbers shared by the two sets, and NtN_tNt​​​ is the total number of distinct numbers in …

    2021/9/14 6:08:22 人评论 次浏览
  • 1063 Set Similarity (25 分)

    Given two sets of integers, the similarity of the sets is defined to beNc/Nt100N_c/N_t100Nc​/Nt​100​%, whereNcN_cNc​​​ is the number of distinct common numbers shared by the two sets, and NtN_tNt​​​ is the total number of distinct numbers in …

    2021/9/14 6:08:22 人评论 次浏览
  • 1047 Student List for Course (25 分)

    Zhejiang University has 40,000 students and provides 2,500 courses. Now given the registered course list of each student, you are supposed to output the student name lists of all the courses. Input Specification: Each input file contains one test case…

    2021/9/14 6:08:15 人评论 次浏览
  • 1047 Student List for Course (25 分)

    Zhejiang University has 40,000 students and provides 2,500 courses. Now given the registered course list of each student, you are supposed to output the student name lists of all the courses. Input Specification: Each input file contains one test case…

    2021/9/14 6:08:15 人评论 次浏览
  • 第22天 | 25天学会wxPython,高级组件之树状结构

    树状结构(wx.TreeCtrl)是一个层次的嵌套结构。一个树状结构的外层和内层有相似的结构,常用于表示有一个上层多个下层的数据结构。 在结构中,树根结点没有前驱结点,其余每个结点有且只有一个前驱结点。叶子结点没有后续结点,其余每个结点的后续节点数可以是一个也可以是…

    2021/9/13 12:34:42 人评论 次浏览
  • 第22天 | 25天学会wxPython,高级组件之树状结构

    树状结构(wx.TreeCtrl)是一个层次的嵌套结构。一个树状结构的外层和内层有相似的结构,常用于表示有一个上层多个下层的数据结构。 在结构中,树根结点没有前驱结点,其余每个结点有且只有一个前驱结点。叶子结点没有后续结点,其余每个结点的后续节点数可以是一个也可以是…

    2021/9/13 12:34:42 人评论 次浏览
  • 25. Reverse Nodes in k-Group(K 个一组,反转链表)

    25. Reverse Nodes in k-GroupGiven a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple …

    2021/9/12 14:05:13 人评论 次浏览
  • 25. Reverse Nodes in k-Group(K 个一组,反转链表)

    25. Reverse Nodes in k-GroupGiven a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple …

    2021/9/12 14:05:13 人评论 次浏览
扫一扫关注最新编程教程