#include<stdio.h>#include<string.h>#include<algorithm>typedef long long ll;using namespace std;struct bign{ int d[1000]; int len; bign(){ memset(d,0,s ...
分类:
其他好文 时间:
2019-02-01 22:30:46
阅读次数:
158
问题描述
有一长度为N(1
例如,长度为4的地面一共有如下4种铺法,并且,一共用了长度为1的瓷砖4块:
4=1+2+1
4=1+3
4=2+2
4=3+1
编程求解上述问题。
输入格式
只有一个数N,代表地板的长度
输出格式
第一行有一个数,代表所有不同的瓷砖铺放方法的总数。
第二行也有一个数,代表这些铺法中长度为...
分类:
其他好文 时间:
2015-05-14 07:32:16
阅读次数:
245
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number...
分类:
其他好文 时间:
2015-02-28 00:07:44
阅读次数:
192
PAT中关于大数的有B1017,A1023,A1024 (A-Advance,B-Basic)B10171017. A除以B (20)本题要求计算A/B,其中A是不超过1000位的正整数,B是1位正整数。你需要输出商数Q和余数R,使得A = B * Q + R成立。输入格式:输入在1行中依次给出A和...
分类:
其他好文 时间:
2015-02-06 18:23:10
阅读次数:
167