結果

問題 No.2702 Nand Nor Matrix
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-06 12:22:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 103,364 KB
最終ジャッジ日時 2024-09-28 12:12:56
合計ジャッジ時間 12,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,688 KB
testcase_01 AC 125 ms
76,780 KB
testcase_02 AC 115 ms
77,264 KB
testcase_03 AC 122 ms
76,756 KB
testcase_04 AC 136 ms
77,152 KB
testcase_05 AC 126 ms
77,248 KB
testcase_06 AC 136 ms
77,164 KB
testcase_07 AC 128 ms
77,436 KB
testcase_08 AC 124 ms
76,916 KB
testcase_09 AC 137 ms
77,384 KB
testcase_10 AC 132 ms
77,232 KB
testcase_11 AC 127 ms
76,828 KB
testcase_12 AC 128 ms
76,828 KB
testcase_13 AC 127 ms
77,032 KB
testcase_14 AC 132 ms
76,780 KB
testcase_15 AC 116 ms
76,736 KB
testcase_16 AC 155 ms
91,640 KB
testcase_17 AC 108 ms
99,780 KB
testcase_18 AC 132 ms
87,772 KB
testcase_19 AC 159 ms
86,288 KB
testcase_20 AC 130 ms
97,404 KB
testcase_21 AC 120 ms
85,404 KB
testcase_22 AC 115 ms
85,280 KB
testcase_23 AC 140 ms
79,096 KB
testcase_24 AC 150 ms
102,852 KB
testcase_25 AC 112 ms
85,240 KB
testcase_26 AC 121 ms
89,388 KB
testcase_27 AC 148 ms
95,896 KB
testcase_28 AC 145 ms
86,776 KB
testcase_29 AC 100 ms
86,304 KB
testcase_30 AC 173 ms
102,752 KB
testcase_31 AC 144 ms
77,780 KB
testcase_32 AC 82 ms
83,572 KB
testcase_33 AC 110 ms
96,512 KB
testcase_34 AC 137 ms
87,712 KB
testcase_35 AC 156 ms
91,544 KB
testcase_36 AC 163 ms
103,232 KB
testcase_37 AC 185 ms
102,944 KB
testcase_38 AC 180 ms
102,900 KB
testcase_39 AC 175 ms
103,276 KB
testcase_40 AC 200 ms
103,364 KB
testcase_41 AC 187 ms
102,856 KB
testcase_42 AC 200 ms
103,120 KB
testcase_43 AC 182 ms
103,020 KB
testcase_44 AC 201 ms
103,044 KB
testcase_45 AC 191 ms
102,952 KB
testcase_46 AC 189 ms
102,892 KB
testcase_47 AC 183 ms
102,816 KB
testcase_48 AC 183 ms
103,360 KB
testcase_49 AC 188 ms
102,940 KB
testcase_50 AC 179 ms
103,124 KB
testcase_51 AC 106 ms
76,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit((1<<19)-1)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
input=sys.stdin.buffer.readline

N=int(input())
A=list(map(int,input().split()))
A.append(A[-1])
B=[A[0]]+[int(input()) for i in range(N-1)]
B.append(B[-1])
col=0
for i in range(1,N):
    if A[i]==A[i+1]:
        col=i
        break
row=0
for i in range(1,N):
    if B[i]==B[i+1]:
        row=i
        break
if A[1]!=B[1]:
    row=0
    col=0
change=0
if A[1]==B[1]==0:
    A=[i^1 for i in A]
    B=[i^1 for i in B]
    change=1
Q=int(input())
for i in range(Q):
    T,R,C=map(int,input().split())
    R-=1
    C-=1
    T-=change
    if R==0:
        print(A[C]^change)
        continue
    if C==0:
        print(B[R]^change)
        continue
    if T<=0:
        print((T&1)^change)
        continue
    if R<=row and C<=col and R+C-1<=T:
        print(((R+C)&1)^change)
        continue
    else:
        print((T&1)^change)
        continue
0