結果
問題 | No.1049 Zero (Exhaust) |
ユーザー | leaf_1415 |
提出日時 | 2020-05-08 21:43:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,147 bytes |
コンパイル時間 | 504 ms |
コンパイル使用メモリ | 79,268 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-04 00:21:11 |
合計ジャッジ時間 | 5,120 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define mod 1000000007 using namespace std; typedef pair<llint, llint> P; llint p, k; llint dp[100005][2]; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> p >> k; dp[0][0] = 1; for(int i = 0; i < k; i++){ for(int j = 0; j < 2; j++){ dp[i+1][0] += dp[i][j], dp[i+1][0] %= mod; dp[i+1][1] += dp[i][j] * (p-1) % mod, dp[i+1][1] %= mod; if(j == 0) dp[i+1][0] += dp[i][j] * p % mod, dp[i+1][0] %= mod; else{ dp[i+1][0] += dp[i][j], dp[i+1][0] %= mod; dp[i+1][1] += dp[i][j] * (p-1) % mod, dp[i+1][1] %= mod; } } } cout << dp[k][0] << endl; return 0; }