結果

問題 No.1258 コインゲーム
ユーザー 夜
提出日時 2020-10-16 22:38:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 92,756 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 22:56:24
合計ジャッジ時間 10,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
5,248 KB
testcase_01 AC 58 ms
5,376 KB
testcase_02 AC 22 ms
5,376 KB
testcase_03 AC 190 ms
5,376 KB
testcase_04 AC 215 ms
5,376 KB
testcase_05 AC 35 ms
5,376 KB
testcase_06 AC 150 ms
5,376 KB
testcase_07 AC 17 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 76 ms
5,376 KB
testcase_10 AC 185 ms
5,376 KB
testcase_11 AC 205 ms
5,376 KB
testcase_12 AC 150 ms
5,376 KB
testcase_13 AC 45 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 181 ms
5,376 KB
testcase_16 AC 37 ms
5,376 KB
testcase_17 AC 205 ms
5,376 KB
testcase_18 AC 74 ms
5,376 KB
testcase_19 AC 70 ms
5,376 KB
testcase_20 AC 148 ms
5,376 KB
testcase_21 AC 192 ms
5,376 KB
testcase_22 AC 134 ms
5,376 KB
testcase_23 AC 98 ms
5,376 KB
testcase_24 AC 37 ms
5,376 KB
testcase_25 AC 93 ms
5,376 KB
testcase_26 AC 87 ms
5,376 KB
testcase_27 AC 186 ms
5,376 KB
testcase_28 AC 48 ms
5,376 KB
testcase_29 AC 52 ms
5,376 KB
testcase_30 AC 228 ms
5,376 KB
testcase_31 AC 60 ms
5,376 KB
testcase_32 AC 28 ms
5,376 KB
testcase_33 AC 162 ms
5,376 KB
testcase_34 AC 198 ms
5,376 KB
testcase_35 AC 70 ms
5,376 KB
testcase_36 AC 192 ms
5,376 KB
testcase_37 AC 74 ms
5,376 KB
testcase_38 AC 183 ms
5,376 KB
testcase_39 AC 52 ms
5,376 KB
testcase_40 AC 242 ms
5,376 KB
testcase_41 AC 239 ms
5,376 KB
testcase_42 AC 245 ms
5,376 KB
testcase_43 AC 241 ms
5,376 KB
testcase_44 AC 241 ms
5,376 KB
testcase_45 AC 231 ms
5,376 KB
testcase_46 AC 233 ms
5,376 KB
testcase_47 AC 244 ms
5,376 KB
testcase_48 AC 233 ms
5,376 KB
testcase_49 AC 233 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int main() {
	long long x = 2;
	long long y = 1000000005;
	long long two = 1;
	while (y > 0) {
		if ((y & 1) == 1) {
			two = two * x % 1000000007;
		}
		x = x * x % 1000000007;
		y >>= 1;
	}
	int s;
	cin >> s;
	for (int i = 0; i < s; i++) {
		long long n, m, x1;
		cin >> n >> m >> x1;
		x = m + 1;
		y = n;
		long long ans = 1;
		while (y > 0) {
			if ((y & 1) == 1) {
				ans = ans * x % 1000000007;
			}
			x = x * x % 1000000007;
			y >>= 1;
		}
		x = m - 1;
		y = n;
		long long ans1 = 1;
		while (y > 0) {
			if ((y & 1) == 1) {
				ans1 = ans1 * x % 1000000007;
			}
			x = x * x % 1000000007;
			y >>= 1;
		}
		long long ans2 = ans;
		ans -= ans1;
		ans %= 1000000007;
		if (ans < 0)ans += 1000000007;
		ans = ans * two % 1000000007;
		if (n % 2 == x1) {
			ans = ans2 - ans;
			ans %= 1000000007;
			if (ans < 0)ans += 1000000007;
		}
		cout << ans % 1000000007 << endl;
	}
	return 0;
}
0