记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 1ms 220.0 KiB
#2 Accepted 1ms 216.0 KiB
#3 Accepted 1ms 228.0 KiB
#4 Accepted 1ms 216.0 KiB
#5 Accepted 1ms 216.0 KiB

代码

#include<bits/stdc++.h>
#define ll long long
#define mod 1000000007
using namespace std;
int n,k;
ll ksm(ll a,int b){
	ll ans = 1;
	while(b){
		if(b & 1) ans = ans * a % mod;
		a = a * a % mod;
		b /= 2;
	}
	return ans;
}
int main(){
	scanf("%d%d",&n,&k);
	printf("%lld",ksm((ll)(k + 1),n));
	return 0;
}

信息

递交者
类型
递交
题目
P1005 hitwh 2019 新生赛 F Ramen and his faculty
语言
C++
递交时间
2020-12-21 14:50:24
评测时间
2020-12-21 14:50:24
评测机
分数
100
总耗时
9ms
峰值内存
228.0 KiB