首页 > 代码库 > 【Codevs 2115】数集分割
【Codevs 2115】数集分割
http://codevs.cn/problem/2115/
1 // <2115.cpp> - Sun Oct 9 12:58:23 2016 2 // This file is made by YJinpeng,created by XuYike‘s black technology automatically. 3 // Copyright (C) 2016 ChangJun High School, Inc. 4 // I don‘t know what this program is. 5 6 #include <iostream> 7 #include <cstdio> 8 #define LL long long 9 using namespace std;10 int quick_pow(int a,int b,int p){11 int w=1;12 while(b){13 if(b&1)w=(w*a)%p;14 b>>=1;a=(a*a)%p;15 }16 return w;17 }18 int main()19 {20 freopen("2115.in","r",stdin);21 freopen("2115.out","w",stdout);22 int n;scanf("%d",&n);23 int ans=(quick_pow(2,n/2,10000)-1)*(quick_pow(2,(n-1)/2,10000)-1);24 ans%=10000;printf((n>=15?"%.4d":"%d"),ans);25 return 0;26 }
【Codevs 2115】数集分割
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。