记录编号 44134 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 数列求值 最终得分 100
用户昵称 GravatarTBK 是否通过 通过
代码语言 C++ 运行时间 0.007 s
提交时间 2012-10-16 22:11:42 内存使用 3.15 MiB
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <string>
#include <set>
#include <algorithm>
#define MAXN 0x7fffffff
using namespace std;
int a,b,c,d,l,m,n,k[2][2]={{0,1},{1,1}};
void qmi(int x)
{
    if (x==1) return;
    bool bo=false;
    if (x%2==1) bo=true;
    x/=2;
    qmi(x);
    d=(k[0][0]*k[0][0]+k[0][1]*k[1][0])%7;
    l=(k[0][0]*k[0][1]+k[0][1]*k[1][1])%7;
    m=(k[1][0]*k[0][0]+k[1][1]*k[1][0])%7;
    n=(k[1][0]*k[0][1]+k[1][1]*k[1][1])%7;
    k[0][0]=d;
    k[0][1]=l;
    k[1][0]=m;
    k[1][1]=n;
    if (bo==true)
    {
        d=k[0][1]%7;
        l=(k[0][0]*b+a*k[0][1])%7;
        m=k[1][1]%7;
        n=(k[1][0]*b+a*k[1][1])%7;
        k[0][0]=d;
        k[0][1]=l;
        k[1][0]=m;
        k[1][1]=n;
    }
}
int main() 
{
    freopen("sequenceb.in", "r", stdin);
    freopen("sequenceb.out", "w", stdout);
    scanf("%d%d%d",&a,&b,&c);
    a%=7;
    b%=7;
    c-=2;
    k[0][1]=b;
    k[1][1]=a;
    qmi(c);
    printf("%d",(k[0][1]+k[1][1])%7);
    fclose(stdin);
    fclose(stdout);
    return 0;
}