728x90
https://softeer.ai/practice/6284
소스코드
#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
//바이러스의 수 K, 증가율 P, 총 시간 N(초)이 주어진다.
unsigned long long k,p,n;
cin >> k >> p>> n;
for (int i = 0; i < n; i++)
{
k = k * p % 1000000007;
}
cout << k;
return 0;
}
728x90
'코딩공부 > Softeer' 카테고리의 다른 글
[Softeer/C++] 진정한 효도 (0) | 2024.03.09 |
---|---|
[Softeer/C++]Level2 8단 변속기 (0) | 2024.03.08 |
[Softeer/C++]Level2 금고털이 (0) | 2024.03.08 |
[Softeer/C++]Level2 [한양대 HCPC 2023] X marks the Spot (0) | 2024.03.08 |
[Softeer/C++]Level1 위험한 효도 (0) | 2024.03.08 |