PAT甲1008 简单模拟 发表于 2020-05-20 | 字数统计: 87 | 阅读时长 ≈ 1 题目链接 模拟即可代码: 123456789101112131415161718192021222324252627#include<iostream>using namespace std;int main(){ int n,t,ans,k; cin>>n; an ... 阅读全文 »
PAT甲1006 简单模拟 发表于 2020-05-20 | 字数统计: 130 | 阅读时长 ≈ 1 A1006题目链接 12345678910111213141516171819202122232425262728293031323334#include<iostream>using namespace std;int hour=3600,minute=60;struct node ... 阅读全文 »
PAT甲1036 简单模拟 发表于 2020-05-20 | 字数统计: 237 | 阅读时长 ≈ 1 题目链接 代码 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950#include<iostream>#include<algorithm>#i ... 阅读全文 »
PAT甲1011 简单模拟 发表于 2020-05-20 | 字数统计: 163 | 阅读时长 ≈ 1 题目链接 代码: 12345678910111213141516171819202122232425262728293031323334#include<iostream>#include<algorithm>using namespace std;struct node ... 阅读全文 »
PAT甲1124 简单模拟 发表于 2020-05-20 | 字数统计: 118 | 阅读时长 ≈ 1 题目链接 代码: 1234567891011121314151617181920212223242526272829303132333435#include<iostream>#include<set>using namespace std;const int maxn=10 ... 阅读全文 »
PAT甲1042 简单模拟 发表于 2020-05-20 | 字数统计: 150 | 阅读时长 ≈ 1 题目链接 代码: 123456789101112131415161718192021222324252627282930313233#include<iostream>#include<string.h>#include<stdio.h>using namespa ... 阅读全文 »