結果

問題 No.474 色塗り2
ユーザー pekempeypekempey
提出日時 2016-12-24 00:41:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 1,438 ms
コンパイル使用メモリ 167,916 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 12:58:35
合計ジャッジ時間 2,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int modpow(int a, int b, int mod) {
	int ret = 1;
	while (b > 0) {
		if (b & 1) {
			ret = 1LL * ret * a % mod;
		}
		a = 1LL * a * a % mod;
		b >>= 1;
	}
	return ret;
}

int main() {
	int T;
	cin >> T;
	while (T--) {
		int A, B, C;
		cin >> A >> B >> C;

		if (C % 2 == 0) {
			puts("0");
			continue;
		}

		const int mod = 1 << 24;
		int X = (modpow(C, B + 1, mod) - 1) % mod;
		puts((X & A) != 0 ? "0" : "1");
	}
}
0