• 大小: 615KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: 其他
  • 标签: PAT  算法  2019  

资源简介

2019PAT甲级秋季 题目及满分代码

资源截图

代码片段和文件信息

#include
#include
#include
#include

#define ac cin.tie(0);cin.sync_with_stdio(0);
using namespace std;
string s;
typedef pair PAIR;
vector ans;
int n k m;

bool cmp(const PAIR &a const PAIR &b) {
    if (a.first != b.first)
        return a.first < b.first;
    else
        return a.second < b.second;
}

long long gcd(int a int b) {
    return b == 0 ? a : gcd(b a % b);
}

bool check(int a) {
    if (a <= 2)
        return false;
    for (int i = 2; i * i <= a; i++)
        if (a % i == 0)
            return false;
    return true;
}

void dfs(int lev int res) {
    if (lev == k) {
        if (!res) {
            long long tmp = stoll(s) + 1;
            int nn = 0;
            while (tmp) {

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1717  2020-12-02 21:08  2019秋季甲级\19秋季1.cpp
     文件        1367  2020-12-02 21:10  2019秋季甲级\19秋季2.cpp
     文件         947  2020-12-02 09:22  2019秋季甲级\19秋季3.cpp
     文件        1311  2020-12-02 20:49  2019秋季甲级\19秋季4.cpp
     文件      147645  2020-12-02 21:59  2019秋季甲级\A.pdf
     文件      161499  2020-12-02 22:00  2019秋季甲级\B.pdf
     文件      244232  2020-12-02 22:00  2019秋季甲级\C.pdf
     文件      144748  2020-12-02 22:00  2019秋季甲级\D.pdf

评论

共有 条评论