A. Cookies

A. Cookies
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Fangy collects cookies. Once he decided to take a box and put cookies into it in some way. If we take a square k × k in size, divided into blocks 1 × 1 in size and paint there the main diagonal together with cells, which lie above it, then the painted area will be equal to the area occupied by one cookie k in size. Fangy also has a box with a square base 2n × 2n, divided into blocks 1 × 1 in size. In a box the cookies should not overlap, and they should not be turned over or rotated. See cookies of sizes 2 and 4 respectively on the figure:

To stack the cookies the little walrus uses the following algorithm. He takes out of the repository the largest cookie which can fit in some place in the box and puts it there. Everything could be perfect but alas, in the repository the little walrus has infinitely many cookies of size 2 and larger, and there are no cookies of size 1, therefore, empty cells will remain in the box. Fangy wants to know how many empty cells will be left in the end.

Input

The first line contains a single integer n (0 ≤ n ≤ 1000).

Output

Print the single number, equal to the number of empty cells in the box. The answer should be printed modulo 106 + 3.

Sample test(s)
input
3
output
9
Note

If the box possesses the base of 23 × 23 (as in the example), then the cookies will be put there in the following manner:

这个题目刚开始错了N遍,原因就
是没有读懂题意,  The answer should be printed modulo  106 + 3 .这句话是个关键,就是对每个结果取余数,懂了这个,这个题就没啥难的了。
#include <cstdio>
#include <cmath>
#include <algorithm>
int main()
{
    int a;
    long long  x[1002];
    x[0]=1;
    x[1]=1;x[2]=3;
    for (int number1=3;number1<1002;number1++)

    {
        x[number1]=x[number1-1]*3%(1000000+3);
    }
    while(scanf("%d",&a)!=EOF)
    {
        printf("%d\n",x[a]);
    }
    return 0;
}




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值