比赛 |
20131026 |
评测结果 |
ATTTTTTTTW |
题目名称 |
eins |
最终得分 |
10 |
用户昵称 |
NVIDIA |
运行时间 |
8.010 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2015-09-12 20:29:22 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<map>
#include<string>
#include<cmath>
#include<vector>
using namespace std;
unsigned long long t,n,p;
int main()
{
freopen("eins.in","r",stdin);
freopen("eins.out","w",stdout);
ios::sync_with_stdio(false);
cin>>t;
while (t--)
{
cin>>n>>p;
if (n==0)
cout<<"0\n";
else if (n==1)
cout<<"1\n";
else
{
int a,b,c;
a=0;
b=1;
for(int i=2; i<=n; i++)
{
c=(a+b)%p;
a=b;
b=c;
}
cout<<c;
}
}
return 0;
}