結果

問題 No.1210 XOR Grid
ユーザー KeroruKeroru
提出日時 2020-08-30 16:25:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 264,176 KB
最終ジャッジ日時 2024-11-15 11:10:43
合計ジャッジ時間 11,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 WA -
testcase_02 AC 41 ms
56,576 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 39 ms
52,224 KB
testcase_08 WA -
testcase_09 AC 43 ms
51,840 KB
testcase_10 WA -
testcase_11 AC 40 ms
52,352 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 40 ms
51,968 KB
testcase_15 WA -
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 40 ms
51,712 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 356 ms
259,640 KB
testcase_26 AC 112 ms
119,808 KB
testcase_27 AC 112 ms
119,808 KB
testcase_28 AC 337 ms
258,944 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 40 ms
51,712 KB
testcase_34 AC 40 ms
51,968 KB
testcase_35 AC 40 ms
52,352 KB
testcase_36 AC 309 ms
255,488 KB
testcase_37 AC 80 ms
104,436 KB
testcase_38 AC 82 ms
104,320 KB
testcase_39 AC 194 ms
198,912 KB
testcase_40 AC 332 ms
263,172 KB
testcase_41 AC 329 ms
261,792 KB
testcase_42 AC 380 ms
260,056 KB
testcase_43 AC 339 ms
264,176 KB
testcase_44 AC 382 ms
259,964 KB
testcase_45 AC 366 ms
260,180 KB
testcase_46 AC 373 ms
260,060 KB
testcase_47 AC 156 ms
132,480 KB
testcase_48 AC 156 ms
132,352 KB
testcase_49 AC 46 ms
57,984 KB
testcase_50 AC 248 ms
191,360 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 153 ms
132,352 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**9+7;n,m,x,*v=map(int,open(0).read().split());a=v[:n];b=v[n:];print(pow(pow(2,(n-1)*(m-1),M),x,M)*all([(sum([(s>>i)&1for s in a])-sum([(s>>i)&1for s in a]))%2==0for i in range(x)]))
0