結果

問題 No.1210 XOR Grid
ユーザー ianCKianCK
提出日時 2020-09-11 19:53:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 24,192 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 01:15:01
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 0 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 0 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 0 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 0 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 34 ms
5,376 KB
testcase_26 AC 33 ms
5,376 KB
testcase_27 AC 34 ms
5,376 KB
testcase_28 AC 36 ms
5,376 KB
testcase_29 AC 34 ms
5,376 KB
testcase_30 AC 27 ms
5,376 KB
testcase_31 AC 33 ms
5,376 KB
testcase_32 AC 33 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 0 ms
5,376 KB
testcase_36 AC 16 ms
5,376 KB
testcase_37 AC 16 ms
5,376 KB
testcase_38 AC 16 ms
5,376 KB
testcase_39 AC 17 ms
5,376 KB
testcase_40 AC 34 ms
5,376 KB
testcase_41 AC 33 ms
5,376 KB
testcase_42 AC 71 ms
5,376 KB
testcase_43 AC 61 ms
5,376 KB
testcase_44 AC 66 ms
5,376 KB
testcase_45 AC 71 ms
5,376 KB
testcase_46 AC 67 ms
5,376 KB
testcase_47 AC 33 ms
5,376 KB
testcase_48 AC 35 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 41 ms
5,376 KB
testcase_51 AC 65 ms
5,376 KB
testcase_52 AC 57 ms
5,376 KB
testcase_53 AC 66 ms
5,376 KB
testcase_54 AC 33 ms
5,376 KB
testcase_55 AC 47 ms
5,376 KB
testcase_56 AC 32 ms
5,376 KB
testcase_57 AC 39 ms
5,376 KB
testcase_58 AC 0 ms
5,376 KB
testcase_59 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         scanf("%lld%lld%lld", &n, &m, &x);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:21:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |         for (int i = 1; i <= n; i++) scanf("%lld", &a[i]);
      |                                      ~~~~~^~~~~~~~~~~~~~~
main.cpp:22:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |         for (int i = 1; i <= m; i++) scanf("%lld", &b[i]);
      |                                      ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

typedef long long int ll;
constexpr int kMod = int(1E9 + 7), kN = int(2E5 + 10);

ll Pow(ll a, ll b) {
	ll ans = 1;
	while (b) {
		if (b & 1) ans = ans * a % kMod;
		a = a * a % kMod;
		b >>= 1;
	}
	return ans;
}

ll a[kN], b[kN];

int main() {
	ll n, m, x;
	scanf("%lld%lld%lld", &n, &m, &x);
	for (int i = 1; i <= n; i++) scanf("%lld", &a[i]);
	for (int i = 1; i <= m; i++) scanf("%lld", &b[i]);
	for (int i = 2; i <= n; i++) b[1] ^= a[i];
	for (int i = 2; i <= m; i++) a[1] ^= b[i];
	if (a[1] != b[1]) printf("0\n");
	else printf("%lld\n", Pow((1LL << x) % kMod, (n - 1) * (m - 1) % (kMod - 1)));
}
0