首页 > 其他 > 详细

牛客训练五:炫酷数学(思维)

时间:2019-02-03 23:30:27      阅读:185      评论:0      收藏:0      [点我收藏+]

题目链接:传送门

思路:对于2^n个数,总共有4^n种两两组合,

考虑每个数的每一位,总共有(0,1)(0,0)(1,0)三种情况,所以只要3^n种就行了。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
typedef long long LL;
const LL MOD = 998244353;
int main(void)
{
    LL n,i,ans;
    while(~scanf("%d",&n)){
        ans=1;
        for(i=1;i<=n;i++) ans=ans*3%MOD;
        printf("%lld\n",ans);
    }
    return 0;
}

 

牛客训练五:炫酷数学(思维)

原文:https://www.cnblogs.com/2018zxy/p/10351226.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!