結果

問題 No.1518 Simple Combinatorics
ユーザー revkirurevkiru
提出日時 2024-08-31 12:31:54
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,297 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 273,792 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-31 12:31:59
合計ジャッジ時間 4,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;

constexpr int P = 1e9 + 7;

template <typename T>
T expow(T a, T b) {
	T res = 1 % P;
	for (; b; b >>= 1) {
		if (b & 1) res = 1ll * res * a % P;
		a = 1ll * a * a % P;
	}
	return res;
}

template <typename T> T read() {
	T sum = 0, fl = 1;
	int ch = getchar();
	for (; !isdigit(ch); ch = getchar()) { if (ch == '-') fl = -1; }
	for (; isdigit(ch); ch = getchar()) sum = sum * 10 + ch - '0';
	return sum * fl;
}

template <typename T> void write(T x) {
	if (x < 0) { x = -x; putchar('-'); }
	if (x > 9) write(x / 10);
	putchar(x % 10 + '0');
}

/* with unlocked: only available on Linux platform */

// template <typename T> T read() {
// 	T sum = 0, fl = 1;
// 	int ch = getchar_unlocked();
// 	for (; !isdigit(ch); ch = getchar_unlocked()) { if (ch == '-') fl = -1; }
// 	for (; isdigit(ch); ch = getchar_unlocked()) sum = sum * 10 + ch - '0';
// 	return sum * fl;
// }

// template <typename T> void write(T x) {
// 	if (x < 0) { x = -x; putchar_unlocked('-'); }
// 	if (x > 9) write(x / 10);
// 	putchar_unlocked(x % 10 + '0');
// }

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);

	int n = read<int>(), k = read<int>();
	i64 res = n * (expow<i64>(n, k) + P - expow<i64>(n + 1, k)) % P;
	write<i64>(res);
	return 0;
}
0