結果

問題 No.1210 XOR Grid
ユーザー nebukuro09nebukuro09
提出日時 2020-08-30 14:29:09
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 129,024 KB
実行使用メモリ 27,800 KB
最終ジャッジ日時 2024-06-22 08:46:59
合計ジャッジ時間 5,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,948 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 61 ms
14,044 KB
testcase_26 AC 59 ms
13,648 KB
testcase_27 AC 60 ms
14,508 KB
testcase_28 AC 61 ms
13,400 KB
testcase_29 AC 61 ms
14,128 KB
testcase_30 AC 49 ms
11,308 KB
testcase_31 AC 60 ms
13,872 KB
testcase_32 AC 62 ms
13,948 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 16 ms
8,436 KB
testcase_37 AC 15 ms
8,992 KB
testcase_38 AC 15 ms
7,324 KB
testcase_39 AC 15 ms
7,228 KB
testcase_40 AC 30 ms
12,988 KB
testcase_41 AC 30 ms
12,936 KB
testcase_42 AC 119 ms
26,968 KB
testcase_43 AC 106 ms
23,776 KB
testcase_44 AC 121 ms
25,924 KB
testcase_45 AC 123 ms
26,796 KB
testcase_46 AC 115 ms
27,800 KB
testcase_47 AC 28 ms
12,848 KB
testcase_48 AC 28 ms
13,088 KB
testcase_49 AC 1 ms
6,940 KB
testcase_50 AC 57 ms
20,692 KB
testcase_51 AC 124 ms
26,240 KB
testcase_52 AC 108 ms
26,120 KB
testcase_53 AC 123 ms
25,748 KB
testcase_54 AC 29 ms
12,984 KB
testcase_55 AC 70 ms
20,652 KB
testcase_56 AC 62 ms
13,404 KB
testcase_57 AC 64 ms
17,060 KB
testcase_58 AC 1 ms
6,944 KB
testcase_59 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdlib, std.datetime;

immutable long MOD = 10^^9 + 7;

void main() {
    auto s = readln.split.map!(to!int);
    auto H = s[0];
    auto W = s[1];
    auto X = s[2];

    auto A = readln.split.map!(to!long).array;
    auto B = readln.split.map!(to!long).array;

    long x = 0;
    foreach (a; A) x ^= a;
    foreach (b; B) x ^= b;

    if (x != 0) {
        writeln(0);
        return;
    }

    long ans = powmod(2, 1L*(H-1)*(W-1), MOD);
    ans = powmod(ans, X, MOD);

    ans.writeln;
}

long powmod(long a, long x, long m) {
    long ret = 1;
    while (x) {
        if (x % 2) ret = ret * a % m;
        a = a * a % m;
        x /= 2;
    }
    return ret;
}
0